summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Sped the usual case for sorting by calling PyObject_RichCompareBoolTim Peters2002-08-041-10/+18
* SF bug 590366: Small typo in listsort:ParseTupleTim Peters2002-08-031-1/+1
* Tim found that once test_longexp has run, test_sort takes very muchGuido van Rossum2002-08-011-5/+3
* SF patch 588728 (Nathan Srebro).Guido van Rossum2002-08-011-0/+18
* Replaced samplesort with a stable, adaptive mergesort.Tim Peters2002-08-011-406/+772
* Checking in the doc file for "timsort". There's way too much here toTim Peters2002-08-011-0/+618
* SF patch #587889, fix memory leak of tp_docNeal Norwitz2002-07-301-0/+1
* Fix forMichael W. Hudson2002-07-291-3/+8
* Excise DL_IMPORT/EXPORT from object.h, and related files. This patchMark Hammond2002-07-291-2/+2
* Fix the problem of not raising a TypeError exception when doing:Neal Norwitz2002-07-281-8/+8
* Patch #574867: Correct list.extend docstring.Martin v. Löwis2002-07-281-1/+1
* SF patch #577031, remove PyArg_Parse() since it's deprecatedNeal Norwitz2002-07-281-2/+8
* Patch #554716: Use __va_copy where available.Martin v. Löwis2002-07-282-0/+8
* tighten up the unicode object's docstring a tadSkip Montanaro2002-07-261-2/+2
* Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError.Jeremy Hylton2002-07-251-0/+2
* Complain if __len__() returns < 0, just like classic classes.Jeremy Hylton2002-07-251-0/+5
* Silly typo. Not sure how that got in.Michael W. Hudson2002-07-191-1/+1
* A few days ago, Guido said (in the thread "[Python-Dev] PythonMichael W. Hudson2002-07-191-1/+34
* More sort cleanup: Moved the special cases from samplesortslice intoTim Peters2002-07-191-65/+73
* binarysort() cleanup: Documented the key invariants, explained why theyTim Peters2002-07-191-2/+13
* listreverse(): Don't call the new reverse_slice unless the listTim Peters2002-07-191-1/+2
* Cleanup yielding a small speed boost: before rich comparisons wereTim Peters2002-07-191-50/+32
* Trimmed trailing whitespace.Tim Peters2002-07-191-22/+22
* Cleanup: Define one internal utility for reversing a list slice, andTim Peters2002-07-191-28/+20
* Remove extraneous semicolon.Jeremy Hylton2002-07-181-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-1711-22/+23
* Remove the next() method -- one is supplied automatically byGuido van Rossum2002-07-161-16/+11
* Remove the next() method -- one is supplied automatically byGuido van Rossum2002-07-161-10/+1
* Make StopIteration a sink state. This is done by clearing out theGuido van Rossum2002-07-161-28/+11
* Make StopIteration a sink state. This is done by clearing out theGuido van Rossum2002-07-161-62/+47
* Whitespace normalization.Guido van Rossum2002-07-161-66/+66
* Make StopIteration a sink state. This is done by clearing out theGuido van Rossum2002-07-161-11/+10
* The object returned by tp_new() may not have a tp_init.Jeremy Hylton2002-07-161-1/+2
* Make list_iter() really static.Guido van Rossum2002-07-161-1/+1
* valid_identifier(): use an unsigned char* so that isalpha() will doGuido van Rossum2002-07-161-2/+2
* docompare(): Another reasonable optimization from Jonathan Hogg for theTim Peters2002-07-151-1/+1
* WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very fewTim Peters2002-07-141-1/+1
* Undef MIN and MAX before defining them, to avoid warnings on certainGuido van Rossum2002-07-131-0/+2
* Don't declare a function with staticforward.Jeremy Hylton2002-07-131-2/+2
* docompare(): Use PyTuple_New instead of Py_BuildValue to build compare'sTim Peters2002-07-111-2/+7
* Extend function() to support an optional closure argument.Jeremy Hylton2002-07-111-12/+65
* object.h special-build macro minefield: renamed all the new lexicalTim Peters2002-07-115-97/+72
* Documented PYMALLOC_DEBUG. This completes primary coverage of all theTim Peters2002-07-101-1/+1
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-0/+15
* SF bug 578752: COUNT_ALLOCS vs heap typesTim Peters2002-07-081-0/+9
* Rearranged and added comments to object.h, to clarify many thingsTim Peters2002-07-071-6/+2
* Removed 3 unlikely #includes that were only needed for the non-gc flavorTim Peters2002-07-071-5/+0
* Trashcan cleanup: Now that cyclic gc is always there, the trashcanTim Peters2002-07-071-50/+40
* Removed WITH_CYCLE_GC #ifdef-ery. Holes:Tim Peters2002-07-072-46/+0
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-302-6/+6