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 ezio.melotti
Recipients ezio.melotti, mfxmfx
Date 2009-06-24.11:27:43
SpamBayes Score 0.014397315
Marked as misclassified No
Message-id <1245842864.99.0.90641966396.issue6334@psf.upfronthosting.co.za>
In-reply-to
Content
Simpler test case:
Py2.6:
>>> n = 46349**2
>>> n
2148229801L
>>> range(n-10, n, 3)
[2148229791L, 2148229794L, 2148229797L, 2148229800L]

Py3.0:
>>> n = 46349**2
>>> n
2148229801
>>> list(range(n-10, n, 3))
[2148229791, 2148229794, 2148229797]
History
Date User Action Args
2009-06-24 11:27:45ezio.melottisetrecipients: + ezio.melotti, mfxmfx
2009-06-24 11:27:44ezio.melottisetmessageid: <1245842864.99.0.90641966396.issue6334@psf.upfronthosting.co.za>
2009-06-24 11:27:43ezio.melottilinkissue6334 messages
2009-06-24 11:27:43ezio.melotticreate