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 serprex
Recipients serprex
Date 2010-07-04.19:53:54
SpamBayes Score 0.045754094
Marked as misclassified No
Message-id <1278273241.45.0.419435390146.issue9155@psf.upfronthosting.co.za>
In-reply-to
Content
Currently, COMPARE_OP is burdened by a needless, and unorthogonal, extra layer of indirection. I've modified it to only handle the rich comparison case, moving the other five cases to BINARY_IN, BINARY_NOT_IN, BINARY_IS, BINARY_IS_NOT, and BINARY_EXC_MATCH

To consider is inlining the POP_JUMP_IF_FALSE POP_TOP which always follow BINARY_EXC_MATCH
History
Date User Action Args
2010-07-04 19:54:01serprexsetrecipients: + serprex
2010-07-04 19:54:01serprexsetmessageid: <1278273241.45.0.419435390146.issue9155@psf.upfronthosting.co.za>
2010-07-04 19:53:59serprexlinkissue9155 messages
2010-07-04 19:53:58serprexcreate