summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* Clarify that the interruptable popen fixes aren't used under Win9x.Mark Hammond2002-08-101-3/+4
* Disallow class assignment completely unless both old and new are heapGuido van Rossum2002-08-102-6/+14
* 1. Combined the base and length arrays into a single array of structs.Tim Peters2002-08-102-53/+92
* The samplesort-vs-mergesort #-of-comparisons comparisons were capturedTim Peters2002-08-101-24/+24
* Fix a typo in the mktemp -> mkstemp patch.Guido van Rossum2002-08-103-3/+3
* Accomodate the packaging changes when we unpack into the dev/doc/ areaFred Drake2002-08-091-1/+2
* Lots of changes to the packaging of the documentation, all to keepFred Drake2002-08-092-42/+72
* A tool to transform gprof(1) output into HTML, so you can click on aGuido van Rossum2002-08-091-0/+78
* Whitespace normalization.Guido van Rossum2002-08-091-2/+2
* Add tests for weakref support for generator-iterators.Fred Drake2002-08-091-1/+27
* Add weakref support generator-iterators.Fred Drake2002-08-091-1/+7
* Add support for the iterator protocol to weakref proxy objects.Fred Drake2002-08-091-38/+64
* There's no distinction among 'user', 'group' and 'world' permissionsTim Peters2002-08-091-2/+14
* Whitespace normalization.Tim Peters2002-08-092-8/+11
* For new-style classes, we can now test for tp_del instead of askingGuido van Rossum2002-08-091-3/+3
* Test finalizers and GC from inside __del__ for new classes.Guido van Rossum2002-08-091-0/+41
* Credit to Oren for the file-iterator patch.Guido van Rossum2002-08-091-1/+1