summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Oops. Return -1 to distinguish error from empty dict.Jeremy Hylton2004-02-171-1/+1
* Double the speed of list.pop() which was spending most of its time parsingRaymond Hettinger2004-02-171-2/+11
* Refactor list_extend() and list_fill() for gains in code size, memoryRaymond Hettinger2004-02-151-84/+71
* Fine tune the speed/space trade-off for overallocating small lists.Raymond Hettinger2004-02-141-8/+3
* Fix missing return value. Spotted by Neal NorwitzRaymond Hettinger2004-02-141-0/+1
* Optimize list.pop() for the common special case of popping off the end.Raymond Hettinger2004-02-131-0/+5
* * Optimized list appends and pops by making fewer calls the underlying systemRaymond Hettinger2004-02-131-89/+68
* Make reversed() transparent with respect to length.Raymond Hettinger2004-02-101-1/+13
* SF patch #875689: >100k alloc wasted on startupRaymond Hettinger2004-02-081-1/+1
* Let reversed() work with itself.Raymond Hettinger2004-02-081-1/+12
* Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocolJim Fulton2004-02-081-0/+1
* Remove support for --without-universal-newlines (see PEP 11).Skip Montanaro2004-02-071-35/+0
* * Fix ref counting in extend() and extendleft().Raymond Hettinger2004-02-071-2/+1
* Fix reallocation bug in unicode.translate(): The code was comparingWalter Dörwald2004-02-051-1/+1
* Allocating a new weakref object can cause existing weakref objects forFred Drake2004-02-041-3/+16
* Fix bug in interpretation of the "callback" argument in the constructors forFred Drake2004-02-031-1/+5
* Removed two unneeded lines from PyObject_Compare().Brett Cannon2004-01-271-2/+0
* Two forgotten Py_DECREF() for two out-of-memory conditions.Armin Rigo2004-01-271-2/+6
* Revert change accidentally checked in as part of a whitespace normalizationTim Peters2004-01-181-9/+5
* Whitespace normalization.Tim Peters2004-01-181-5/+9
* Remove support for SunOS 4.Skip Montanaro2004-01-171-10/+0
* SF Patch #871704: Py_SequenceFast can mask errorsRaymond Hettinger2004-01-111-3/+11
* [SF #866875] Add a specialized routine for one characterHye-Shik Chang2004-01-051-45/+95
* Apply pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-8/+4
* Apply tuple/list pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-042-9/+5
* Cosmetic fix for wrongly indented tabs with ts=4.Hye-Shik Chang2004-01-031-8/+8
* * Simplify and speedup logic for tp_print.Raymond Hettinger2003-12-311-15/+29
* Fix gcc 3.3 warnings related to Py_UNICODE_WIDE.Hye-Shik Chang2003-12-291-1/+4
* complete backout of listobject.c v2.171Andrew MacIntyre2003-12-281-4/+0
* Revert previous two checkins to repair test failure.Jeremy Hylton2003-12-261-24/+6
* use the correct macro to access list sizeAndrew MacIntyre2003-12-261-1/+1
* Performance of list([]) in 2.3 came up in a thread on comp.lang.python,Andrew MacIntyre2003-12-251-6/+28
* Fix unicode.rsplit()'s bug that ignores separater on the end of string whenHye-Shik Chang2003-12-231-1/+1
* There are places in Python which assume bytes have 8-bits. Formalize that aSkip Montanaro2003-12-221-4/+0
* Fix broken xmlcharrefreplace by rev 2.204.Hye-Shik Chang2003-12-221-3/+3
* SF #859573: Reduce compiler warnings on gcc 3.2 and above.Hye-Shik Chang2003-12-191-1/+14
* Guido grants a Christmas wish:Raymond Hettinger2003-12-171-37/+0
* Speedup set.update by using the override mode for PyDict_Merge().Raymond Hettinger2003-12-151-1/+1
* Add rsplit method for str and unicode builtin types.Hye-Shik Chang2003-12-152-1/+315
* Improve algorithm for set.difference when the input is not a set.Raymond Hettinger2003-12-151-43/+43
* * Refactor set.__contains__()Raymond Hettinger2003-12-131-21/+10
* Refactor set.discard() and set.remove().Raymond Hettinger2003-12-131-31/+22
* Improve argument checking speed.Raymond Hettinger2003-12-131-17/+44
* Use dictionary specific looping idiom where possible.Raymond Hettinger2003-12-131-114/+40
* Simplify previous checkin -- a new function was not needed.Raymond Hettinger2003-12-131-26/+1
* Use PyDict_Contains() instead of PySequence_Contains().Raymond Hettinger2003-12-131-2/+2
* * Added a new method flag, METH_COEXIST.Raymond Hettinger2003-12-135-3/+69
* Fix memory error treatment correctly. Going to dsu_fail causesHye-Shik Chang2003-12-101-1/+1
* Fixes and tests for various "holding pointers when arbitrary Python codeMichael W. Hudson2003-12-041-35/+46
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-293-64/+50