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 vstinner
Recipients pitrou, serhiy.storchaka, vstinner
Date 2012-03-26.22:19:52
SpamBayes Score 0.011333708
Marked as misclassified No
Message-id <1332800392.99.0.808363803663.issue14419@psf.upfronthosting.co.za>
In-reply-to
Content
+    if (((size_t) p & LONG_PTR_MASK) == ((size_t) q & LONG_PTR_MASK)) {

This test looks. I think that it should be replaced by:

    if (!((size_t) q & LONG_PTR_MASK)) {
History
Date User Action Args
2012-03-26 22:19:53vstinnersetrecipients: + vstinner, pitrou, serhiy.storchaka
2012-03-26 22:19:52vstinnersetmessageid: <1332800392.99.0.808363803663.issue14419@psf.upfronthosting.co.za>
2012-03-26 22:19:52vstinnerlinkissue14419 messages
2012-03-26 22:19:52vstinnercreate