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 quiver
Recipients
Date 2006-04-22.16:11:44
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
  def foo(a,b=None):pass
  foo(b=1,2)

With Python 2.5(compiled as of 2006-04-23), this code
runs without any error.

In older Python(although I didn't check every version
of it), I get
  File "foo.py", line 2
    foo(b=1,2)
SyntaxError: non-keyword arg after keyword arg
History
Date User Action Args
2007-08-23 14:39:36adminlinkissue1474677 messages
2007-08-23 14:39:36admincreate