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 kurtoglu
Recipients amaury.forgeotdarc, inducer, kurtoglu, nlopes
Date 2009-07-09.22:22:23
SpamBayes Score 4.606939e-07
Marked as misclassified No
Message-id <1247178145.32.0.673692110645.issue6323@psf.upfronthosting.co.za>
In-reply-to
Content
>>> lambda: pass
SyntaxError: invalid syntax (<pyshell#0>, line 1)
>>> lambda: pas
<function <lambda> at 0x00F5C858>
>>> func_1=lambda: pas
>>> func_1()
Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    func_1()
  File "<pyshell#2>", line 1, in <lambda>
    func_1=lambda: pas
NameError: global name 'pas' is not defined
>>> func_1=lambda: pass
SyntaxError: invalid syntax (<pyshell#4>, line 1)
>>> 

This is very funny:)
History
Date User Action Args
2009-07-09 22:22:25kurtoglusetrecipients: + kurtoglu, amaury.forgeotdarc, inducer, nlopes
2009-07-09 22:22:25kurtoglusetmessageid: <1247178145.32.0.673692110645.issue6323@psf.upfronthosting.co.za>
2009-07-09 22:22:23kurtoglulinkissue6323 messages
2009-07-09 22:22:23kurtoglucreate