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 r.david.murray
Recipients markon, r.david.murray
Date 2012-06-17.15:43:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339947830.26.0.331483858601.issue15098@psf.upfronthosting.co.za>
In-reply-to
Content
This is fixed in Python3:

>>> def foo(a, b=None):
...   pass
... 
>>> foo(b=1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: foo() missing 1 required positional argument: 'a'
History
Date User Action Args
2012-06-17 15:43:50r.david.murraysetrecipients: + r.david.murray, markon
2012-06-17 15:43:50r.david.murraysetmessageid: <1339947830.26.0.331483858601.issue15098@psf.upfronthosting.co.za>
2012-06-17 15:43:49r.david.murraylinkissue15098 messages
2012-06-17 15:43:49r.david.murraycreate