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 serhiy.storchaka
Recipients rhettinger, serhiy.storchaka
Date 2015-02-01.08:50:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422780659.98.0.14095002867.issue23359@psf.upfronthosting.co.za>
In-reply-to
Content
>>> s = set()
>>> s.add(1<<64)
>>> s.add(2<<64)
>>> s.add(3<<64)
>>> list(s)
[36893488147419103232, 18446744073709551616, 55340232221128654848]
>>> s.discard(1<<64)
>>> s.discard(2<<64)
>>> s.add(3<<64)
>>> list(s)
[55340232221128654848, 55340232221128654848]
History
Date User Action Args
2015-02-01 08:51:00serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger
2015-02-01 08:50:59serhiy.storchakasetmessageid: <1422780659.98.0.14095002867.issue23359@psf.upfronthosting.co.za>
2015-02-01 08:50:59serhiy.storchakalinkissue23359 messages
2015-02-01 08:50:59serhiy.storchakacreate