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 belopolsky
Recipients belopolsky
Date 2008-03-28.04:05:16
SpamBayes Score 0.07411715
Marked as misclassified No
Message-id <1206677118.63.0.142364619401.issue2499@psf.upfronthosting.co.za>
In-reply-to
Content
Before:

>>> dis(lambda:+2)
  1           0 LOAD_CONST               0 (2)
              3 UNARY_POSITIVE      
              4 RETURN_VALUE        
>>> dis(lambda:not 2)
  1           0 LOAD_CONST               0 (2)
              3 UNARY_NOT           
              4 RETURN_VALUE        

After:

>>> dis(lambda:+2)
  1           0 LOAD_CONST               1 (2)
              3 RETURN_VALUE        
>>> dis(lambda:not 2)
  1           0 LOAD_CONST               1 (False)
              3 RETURN_VALUE
History
Date User Action Args
2008-03-28 04:05:18belopolskysetspambayes_score: 0.0741171 -> 0.07411715
recipients: + belopolsky
2008-03-28 04:05:18belopolskysetspambayes_score: 0.0741171 -> 0.0741171
messageid: <1206677118.63.0.142364619401.issue2499@psf.upfronthosting.co.za>
2008-03-28 04:05:17belopolskylinkissue2499 messages
2008-03-28 04:05:17belopolskycreate