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 rnd0110
Recipients
Date 2006-07-29.20:21:02
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This tells it all:

>>> str('sdfd', **a,)
  File "<stdin>", line 1
    str('sdfd', **a,)
                   ^
SyntaxError: invalid syntax

>>> str('sdfd', *a,)
  File "<stdin>", line 1
    str('sdfd', *a,)
                   ^
SyntaxError: invalid syntax

While the docs tell otherwise:

http://docs.python.org/ref/calls.html

While having arguments after ** doesn't make sense,
comma after ANY kinds of arguments seem to be more
consistent.


History
Date User Action Args
2007-08-23 14:41:43adminlinkissue1531016 messages
2007-08-23 14:41:43admincreate