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, hynek
Date 2012-05-12.22:57:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336863476.44.0.603161426332.issue14794@psf.upfronthosting.co.za>
In-reply-to
Content
This seems to have been fixed as of 3.2.3 (as shipped with Ubuntu Precise):

Python 3.2.3 (default, Apr 12 2012, 19:08:59) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> slice(0,90000,None).indices(12600000000)
(0, 90000, 1)

Current tip works fine too:

Python 3.3.0a3+ (default:b32baa5b7626+, May 10 2012, 14:56:20) 
[GCC 4.6.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> slice(0,90000,None).indices(12600000000)
(0, 90000, 1)


I'd close this bug unless I'm missing something?
History
Date User Action Args
2012-05-12 22:57:56hyneksetrecipients: + hynek, Paul.Upchurch
2012-05-12 22:57:56hyneksetmessageid: <1336863476.44.0.603161426332.issue14794@psf.upfronthosting.co.za>
2012-05-12 22:57:55hyneklinkissue14794 messages
2012-05-12 22:57:55hynekcreate