STINNER Victor <[email protected]> added the comment:
+ 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)) {
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue14419>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com