summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix MSVC warnings.Guido van Rossum2002-08-121-2/+2
* Refactor how __dict__ and __weakref__ interact with __slots__.Guido van Rossum2002-08-121-55/+147
* x_mul(): Made life easier for C optimizers in the "grade school"Tim Peters2002-08-121-4/+5
* k_mul() and long_mul(): I'm confident that the Karatsuba algorithm isTim Peters2002-08-122-12/+40
* Portable way of producing unsigned 32-bit hex output to print theGuido van Rossum2002-08-121-2/+4
* Shut up warnings about hex()/oct() that can't be avoided.Guido van Rossum2002-08-122-0/+8
* Avoid warnings about <<. external_attr is now an unsigned long.Guido van Rossum2002-08-121-2/+2
* k_mul: Rearranged computation for better cache use. Ignored overflowTim Peters2002-08-121-60/+50
* Correct PyAPI_FUNC to PyAPI_DATA - sorry Jack.Mark Hammond2002-08-121-2/+2
* Add name mangling for new PyUnicode_FromOrdinal() and fix declarationMarc-André Lemburg2002-08-121-1/+3
* Excise DL_EXPORT from Include.Mark Hammond2002-08-1251-673/+669
* x_mul(): This failed to normalize its result.Tim Peters2002-08-121-6/+18
* Introduced helper functions v_iadd and v_isub, for in-place digit-vectorTim Peters2002-08-121-29/+75
* New news about __class__ assignment restrictions and speed-up ofGuido van Rossum2002-08-121-43/+51
* Revert what looks like a typo from the last checkinNeal Norwitz2002-08-121-1/+1
* k_mul(): Repaired another typo in another comment.Tim Peters2002-08-121-1/+1
* k_mul(): Repaired typo in comment.Tim Peters2002-08-121-1/+1
* Cautious introduction of a patch that started fromTim Peters2002-08-123-88/+272
* Fixed misspelling in comment.Tim Peters2002-08-111-1/+1
* int_lshift(): Simplified/sped overflow-checking.Tim Peters2002-08-111-4/+2
* Extend stripid() to handle strings ending in more than one '>'.Ka-Ping Yee2002-08-111-37/+36
* Reset errno to zero after calling PyErr_Warn(). It can potentially doGuido van Rossum2002-08-111-0/+1
* Use a better check for overflow from a<<b.Guido van Rossum2002-08-111-2/+4
* Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.Marc-André Lemburg2002-08-115-35/+82
* Implement stage B0 of PEP 237: add warnings for operations thatGuido van Rossum2002-08-114-4/+50
* test_saveall(): Another small simplification; plus s/l/L/g.Tim Peters2002-08-111-10/+8
* And one more simplification to test_saveall().Tim Peters2002-08-101-11/+10
* test_saveall(): Simplified a little, given that we only expect one itemTim Peters2002-08-101-6/+4
* If any trash happened to be sitting around waiting to get collected atTim Peters2002-08-101-1/+8
* Convert characters from the locale's encoding on output.Martin v. Löwis2002-08-102-1/+15
* Fixed new typos, added a little info about ~sort versus "hint"s.Tim Peters2002-08-101-4/+10