summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* tempfile's mkstemp(): Changed last argument fromTim Peters2002-08-142-11/+11
* Remove a broken example of extreme backward compatibility; it isFred Drake2002-08-141-21/+0
* Patch #595014: Cygwin tempfile patchJason Tishler2002-08-141-3/+3
* Patch by Tim to shut up the compiler's DeprecationWarnings on theBarry Warsaw2002-08-141-18/+9
* test_many(): open only 100 temp files, not 1000. Some systems don'tGuido van Rossum2002-08-141-1/+1
* Patch #588564: _locale library patchJason Tishler2002-08-141-1/+6
* Check for trailing backslash. Fixes #593656.Martin v. Löwis2002-08-142-5/+9
* Patch #505705: Remove eval in pickle and cPickle.Martin v. Löwis2002-08-148-139/+267
* tightening up a few except: clausesSkip Montanaro2002-08-141-3/+3
* Fix memory leaks reported by valgrindNeal Norwitz2002-08-141-1/+7
* add some example docstrings using PyDoc_STRSkip Montanaro2002-08-141-8/+8
* add PyDoc_STR and PyDoc_STRVAR calls as examples for module authorsSkip Montanaro2002-08-141-6/+18
* runtest(): I don't know why we don't just use TESTFN, but if we have toTim Peters2002-08-141-4/+5
* mkstemp(): Repaired error in docstring (the sense of the 'binary' flagTim Peters2002-08-141-2/+2
* mkstemp(): The optional "binary" argument is clearly intended to be aTim Peters2002-08-131-1/+1
* NamedTemporaryFile(), TemporaryFile(): removed needless local vrbl 'bin'.Tim Peters2002-08-131-6/+8
* template: removed special-casing for NT; there isn't an 8-character limit.Tim Peters2002-08-131-4/+1
* _once(): Removed obfuscating aliasing of _once_lock.Tim Peters2002-08-131-4/+2
* _once(): Simplified dict manipulation.Tim Peters2002-08-131-2/+2
* Allow more docstrings to be removed during compilation in some modulesNeal Norwitz2002-08-134-38/+40
* Allow more docstrings to be removed during compilationNeal Norwitz2002-08-132-14/+18
* Added a test specifically to tickle Karatsuba; it costs no appreciableTim Peters2002-08-131-0/+26
* Add a missing call to _strclass().Jeremy Hylton2002-08-131-1/+1
* Fixed error in new comment.Tim Peters2002-08-131-4/+3
* k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocatedTim Peters2002-08-131-8/+44
* Regress Guido's change of 2002/08/06 to check for the zlib versionBarry Warsaw2002-08-131-4/+13
* Allow docstrings to be removed during compilation for *SLOT macro and friendsNeal Norwitz2002-08-131-3/+5
* Add tests for including __dict__ and/or __weakref__ in __slots__.Guido van Rossum2002-08-131-1/+50
* SF bug #574235, convert_path fails with empty pathnameNeal Norwitz2002-08-131-2/+4
* Allow docstrings to be removed during compilationNeal Norwitz2002-08-131-3/+3
* Add test for SF bug # 575229, multiple inheritance w/ slots dumps coreNeal Norwitz2002-08-131-0/+11
* Remove ugly irregular spaces from in front of some comments.Fred Drake2002-08-131-3/+3
* Bug #556025: list(xrange(1e9)) --> seg faultJason Tishler2002-08-131-0/+5
* Add an improvement wrinkle to Neil Schemenauer's change to int_mulGuido van Rossum2002-08-131-2/+4
* test_division(): Added one larger digits value, to ensure that theTim Peters2002-08-131-1/+2
* Machines-- and Python --are a lot faster in relevant ways since thisTim Peters2002-08-131-3/+5
* Fix comment for PyLong_AsUnsignedLong() to say that the return valueGuido van Rossum2002-08-131-1/+1
* Fix wanrings about unsigned hex constants.Guido van Rossum2002-08-121-2/+2
* k_lopsided_mul(): This allocated more space for bslice than necessary.Tim Peters2002-08-121-1/+1
* The auto-reply text for the python-docs address. This is not automaticallyFred Drake2002-08-121-0/+171
* Added new function k_lopsided_mul(), which is much more efficient thanTim Peters2002-08-122-13/+75
* Don't use hex constants representing negative numbers.Guido van Rossum2002-08-121-1/+1
* Suppress warnings about test_grammar.py that can't be suppressed insideGuido van Rossum2002-08-121-0/+6
* Use PyErr_WarnExplicit() to warn about hex/oct constants, so theGuido van Rossum2002-08-121-4/+9
* Updated for the current state of affairs.Jack Jansen2002-08-121-20/+27
* New names.Guido van Rossum2002-08-121-0/+2
* Make sure that *any* object whose id() is used as a memo key is keptGuido van Rossum2002-08-121-2/+1
* k_mul(): Moved an assert down. In a debug build, interrupting aTim Peters2002-08-121-2/+2
* k_mul(): Heh -- I checked in two fixes for the last problem. Only keepTim Peters2002-08-121-2/+2
* k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rareTim Peters2002-08-121-3/+11