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 hynek
Recipients Paul.Upchurch, eric.araujo, hynek
Date 2012-05-13.19:37:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336937856.67.0.992990043768.issue14794@psf.upfronthosting.co.za>
In-reply-to
Content
I did a little compiling party with official releases and all permutations of Linux, OS X x 3.2.2, 3.2.3 worked. Both ran on 64bit (Linux in a VirtualBox).

Python 3.2.2 (default, May 13 2012, 21:24:38) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> slice(0,90000,None).indices(12600000000)
(0, 90000, 1)

Python 3.2.2 (default, May 13 2012, 21:33:57) 
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> slice(0,90000,None).indices(12600000000)
(0, 90000, 1)

Can we narrow it down to 32bit hosts/OS?
History
Date User Action Args
2012-05-13 19:37:36hyneksetrecipients: + hynek, eric.araujo, Paul.Upchurch
2012-05-13 19:37:36hyneksetmessageid: <1336937856.67.0.992990043768.issue14794@psf.upfronthosting.co.za>
2012-05-13 19:37:36hyneklinkissue14794 messages
2012-05-13 19:37:35hynekcreate