Message 127783 - Python tracker

Message127783

Author benjamin.peterson
Recipients benjamin.peterson
Date 2011-02-03.05:02:39
SpamBayes Score 2.2792555e-07
Marked as misclassified No
Message-id <1296709360.51.0.0254918555785.issue11105@psf.upfronthosting.co.za>
In-reply-to
Content
You don't want to know why I was thinking about this...

$ ./python 
Python 3.2rc2+ (py3k:88302, Feb  1 2011, 19:02:10) 
[GCC 4.4.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ast
>>> e = ast.UnaryOp(op=ast.Not(), lineno=0, col_offset=0)
>>> e.operand = e
>>> compile(ast.Expression(e), "<test>", "eval")
Segmentation fault
History
Date User Action Args
2011-02-03 05:02:40benjamin.petersonsetrecipients: + benjamin.peterson
2011-02-03 05:02:40benjamin.petersonsetmessageid: <1296709360.51.0.0254918555785.issue11105@psf.upfronthosting.co.za>
2011-02-03 05:02:39benjamin.petersonlinkissue11105 messages
2011-02-03 05:02:39benjamin.petersoncreate