summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Repaired a braino in the description of bad minrun values.Tim Peters2002-08-091-3/+3
* Major speedup for new-style class creation. Turns out there was someGuido van Rossum2002-08-091-0/+22
* Moved special case for tuples from iterobject.c toRaymond Hettinger2002-08-092-25/+123
* Significant speedup in new-style object creation: in slot_tp_new(),Guido van Rossum2002-08-081-1/+8
* A modest speedup of object deallocation. call_finalizer() did ratherGuido van Rossum2002-08-081-66/+70
* Added info about highwater heap-memory use for the sortperf.py tests; + aTim Peters2002-08-081-3/+31
* PyList_Reverse(): This was leaking a reference to Py_None on every call.Tim Peters2002-08-081-1/+4
* Fix a subtle bug in the trashcan code I added yesterday toGuido van Rossum2002-08-071-2/+3
* Replace abort with Py_FatalError.Martin v. Löwis2002-08-071-1/+1
* Make more functions staticNeal Norwitz2002-08-061-2/+2
* Make readahead functions staticNeal Norwitz2002-08-061-5/+8
* Fix SF bug 574207 (chained __slots__ dealloc segfault).Guido van Rossum2002-08-061-10/+52
* PyUnicode_Contains(): The memcmp() call didn't take into account theBarry Warsaw2002-08-061-1/+1
* Committing patch #591250 which provides "str1 in str2" when str1 is aBarry Warsaw2002-08-062-26/+39
* SF patch 580331 by Oren Tirosh: make file objects their own iterator.Guido van Rossum2002-08-061-31/+130
* SF 582071 clarified the .split() method's docstring to note that sep=NoneRaymond Hettinger2002-08-051-2/+2
* 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