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 lorg
Recipients lorg, mark
Date 2008-03-13.11:18:34
SpamBayes Score 0.04450411
Marked as misclassified No
Message-id <1205407116.95.0.310925247069.issue2283@psf.upfronthosting.co.za>
In-reply-to
Content
This is not a bug, just missing parenthesis.
>>> lambda x: x,x
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'x' is not defined
>>> lambda x: (x,x)
<function <lambda> at 0x8293e2c>
History
Date User Action Args
2008-03-13 11:18:37lorgsetspambayes_score: 0.0445041 -> 0.04450411
recipients: + lorg, mark
2008-03-13 11:18:37lorgsetspambayes_score: 0.0445041 -> 0.0445041
messageid: <1205407116.95.0.310925247069.issue2283@psf.upfronthosting.co.za>
2008-03-13 11:18:35lorglinkissue2283 messages
2008-03-13 11:18:35lorgcreate