- 03 Şub, 2003 21 kayıt (commit)
-
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Guido van Rossum yazdı
wasn't used outside the assert (and hence caused a compiler warning about an unused variable in NDEBUG mode). The assert wasn't very useful any more. _PyLong_NumBits(): moved the calculation of ndigits after asserting that v != NULL.
-
Guido van Rossum yazdı
huge. On older Linux systems, the C library's strtod() apparently gives up before seeing the end of the string when it sees so many digits that it thinks the result must be Infinity. (It is wrong, BTW -- there could be an "e-10000" hiding behind 10,000 digits.) The shorter shuge still tests what it's testing, without relying on strtod() doing a super job.
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
exception, ResourceDenied. This is used to distinguish between tests that are skipped for other reasons (platform support, missing data, etc.) from those that are skipped because a "resource" has not been enabled. This prevents those tests from being reported as unexpected skips for the platform; those should only be considered unexpected skips if the resource were enabled.
-
Skip Montanaro yazdı
-
Andrew M. Kuchling yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Greg Ward yazdı
Rename 'whitespace' global to '_whitespace' -- it's not part of the public interface.
-
Walter Dörwald yazdı
that are no real tests, because test_b1 and test_b2 no longer exist. (Spotted by Raymond Hettinger)
-
Just van Rossum yazdı
-
Michael W. Hudson yazdı
[ 676342 ] after using pdb readline does not work correctly using Michael Stone's patch so the completer functionality of cmd is only setup between preloop and postloop.
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
* Correct description of PyFloat_FromString. While ignored, the pend argument still has to be given. * Typo in PyLong_FromString.
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
-
Skip Montanaro yazdı
description since while there, it is useless and ignored, according to Tim's commen. (PyInt_FromString is also not described, but PyLong_FromString is. Is the former deprecated?)
-
Guido van Rossum yazdı
cross-pickling tests.
-
- 02 Şub, 2003 19 kayıt (commit)
-
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Tim Peters yazdı
overflow holes in Pdata_grow().
-
Just van Rossum yazdı
-
Tim Peters yazdı
a function, then p->f(arg1, arg2, ...) is semantically the same as (*p->f)(arg1, arg2, ...) Changed all instances of the latter into the former. Given how often the code embeds this kind of expression in an if test, the unnecessary parens and dereferening operator were a real drag on readability.
-
Tim Peters yazdı
embedded assignments, for readability.
-
Tim Peters yazdı
-
Neal Norwitz yazdı
-
Tim Peters yazdı
needed outside the first loop.
-
Tim Peters yazdı
loops. Renamed DATA and BINDATA to DATA0 and DATA1. Included disassemblies, but noted why we can't test them. Added XXX comment to cPickle about a mysterious comment, where pickle and cPickle diverge in how they number PUT indices.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
to have an effect before protocol 3 is invented, so no test can be written for this (yet).
-
Tim Peters yazdı
the hitherto unknown (to me) noload() cPickle function, which is (a) something we don't test at all, and (b) pickle.py doesn't have.
-
Raymond Hettinger yazdı
-