Message75496
| Author |
vstinner |
| Recipients |
christian.heimes, gvanrossum, mark.dickinson, tim.peters, vstinner |
| Date |
2008年11月04日.17:27:39 |
| SpamBayes Score |
8.884282e-12 |
| Marked as misclassified |
No |
| Message-id |
<1225819678.01.0.258276838713.issue1814@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Updated patch, changes:
- fix mashal module
- fix all conversion from/to small integer (long, unsigned long, long
long, unsigned long long, size_t, ssize_t)
- create numbits() method for the long type (see also issue #3439)
- catch memory allocation failure
- fix many other bugs to fix most tests
Failing tests:
- decimal: long_hash() is broken (doesn't use MSB)
- io, pickle, pickletools, sqlite, tarfile: null byte in argument for
int()
- random: use old files from pickle whih contains '2147483648L\n'
(trailing L)
- sys: sizeof is invalid
To do:
- raise OverflowError in numbits() for integer 2**(2**k) where 2**k
doesn't fit in an integer
- fix last tests
This version is slower than previous version, but it has less bugs :-) |
|