Message 104737 - Python tracker (original) (raw)
Message104737
Author | robertwb |
---|---|
Recipients | Alexander.Belopolsky, akitada, christian.heimes, josm, loewis, mark.dickinson, rhettinger, robertwb, zanella |
Date | 2010-05-01.19:02:39 |
SpamBayes Score | 0.003154637 |
Marked as misclassified | No |
Message-id | 1272740561.55.0.0218582653387.issue1533@psf.upfronthosting.co.za |
In-reply-to |
Content |
---|
Thank you Alexander. Yes, there is still an issue for large operands, and the attached patch does fix it. Floats are explicitly checked for and rejected by PyArg_ParseTuple for the "l" format (as called by builtin_range) so to preserve this behavior we can explicitly check in the argument parsing of handle_range_longs as well. This all goes away in Py3 due to the unification of int and long. (And I agree that using __index__ rather than __int__ fits better there). |
History | |||
---|---|---|---|
Date | User | Action | Args |
2010-05-01 19:02:41 | robertwb | set | recipients: + robertwb, loewis, rhettinger, mark.dickinson, christian.heimes, josm, zanella, akitada, Alexander.Belopolsky |
2010-05-01 19:02:41 | robertwb | set | messageid: 1272740561.55.0.0218582653387.issue1533@psf.upfronthosting.co.za |
2010-05-01 19:02:40 | robertwb | link | issue1533 messages |
2010-05-01 19:02:40 | robertwb | create |