Message5250

Author kellrott
Recipients fwierzbicki, kellrott
Date 2009-10-21.16:17:51
SpamBayes Score 2.2752254e-06
Marked as misclassified No
Message-id <1256141872.74.0.59435586645.issue1427@psf.upfronthosting.co.za>
In-reply-to
Content
A simpler example:

import _ast as ast
tmpAssign = ast.Assign()
tmpExpr = ast.Expr()
tmpExpr.value = tmpAssign
print tmpExpr.value

In Jython tmpExpr.value is None

In Python, it's something like:
<_ast.Assign object at 0x8ac50>
History
Date User Action Args
2009-10-21 16:17:52kellrottsetmessageid: <1256141872.74.0.59435586645.issue1427@psf.upfronthosting.co.za>
2009-10-21 16:17:52kellrottsetrecipients: + kellrott, fwierzbicki
2009-10-21 16:17:52kellrottlinkissue1427 messages
2009-10-21 16:17:52kellrottcreate