This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark
Recipients mark
Date 2008-04-11.08:42:48
SpamBayes Score 0.3195484
Marked as misclassified No
Message-id <1207903370.95.0.0868464301565.issue2613@psf.upfronthosting.co.za>
In-reply-to
Content
A bare * in a parameter list behaves differently depending on what
follows it:

Py30a4:

>>> def f(*, a=1, b=2): return 1

>>> def g(*, **kwargs): return 1
SyntaxError: named arguments must follow bare * (<pyshell#10>, line 1)

I don't know if this is a bug or not but thought it worth querying. This
case does not seem to be mentioned in PEP 3102.
History
Date User Action Args
2008-04-11 08:42:51marksetspambayes_score: 0.319548 -> 0.3195484
recipients: + mark
2008-04-11 08:42:50marksetspambayes_score: 0.319548 -> 0.319548
messageid: <1207903370.95.0.0868464301565.issue2613@psf.upfronthosting.co.za>
2008-04-11 08:42:48marklinkissue2613 messages
2008-04-11 08:42:48markcreate