Guido van Rossum <gu...@python.org> added the comment:

It's a (small) mistake that we didn't make the syntax for argument lists in 
decorators the same as argument lists everywhere else, and that should be fixed 
to allow exactly what's allowed in regular calls. (That syntax is weird because 
we don't want e.g. `@foo().bar` but we do want e.g. `@foo.bar()`.)

I am honestly not sure that we should change anything here, since the meaning 
is not actually ambiguous: the syntax for generator expressions doesn't allow 
e.g. `x for x in 1, 2, 3` -- you have to write `x for x in (1, 2, 3)`. (A 
regular for-loop *does* allow this, but there the context makes it unambiguous 
-- that's why genexprs are different.)

But I'm fine with changing it, as long as we do it consistently.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32012>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to