I don’t think that this is a practical problem. I don’t know how often people use these libraries to compose decorators, but even if it’s very frequent (which it probably isn’t), it wouldn’t look at all ambiguous to a human to mix with this feature, because the following end up meaning the same thing:
@daytime@logcall
def cheese(…):
@daytime
@logcall
def cheese(…):
Try it with composing decorators that take arguments and return the actual decorator, etc.; it’s never ambiguous or misleading to the reader.
So, I think the PEP can dismiss the problem, just not in the way it currently does.