summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Implement straightforward suggestions from gcc warnings (remove unusedGuido van Rossum2003-11-181-3/+2
* Use PySequence_Contains() instead of direct access macro.Raymond Hettinger2003-11-181-11/+5
* Various fixups (most suggested by Armin Rigo).Raymond Hettinger2003-11-171-40/+66
* Fix output spacing typoRaymond Hettinger2003-11-161-1/+1
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+1073
* subtype_dealloc(): Simplified overly contorted retracking logic. WithTim Peters2003-11-131-6/+5
* subtype_dealloc(): A more complete fix for critical bug 840829 +Tim Peters2003-11-131-6/+19
* SF bug 840829: weakref callbacks and gc corrupt memory.Tim Peters2003-11-121-1/+6
* Improve the reverse list iterator to free memory as soon as the iteratorRaymond Hettinger2003-11-081-1/+4
* Minor code fixup. Make sure that len reflects the current list size.Raymond Hettinger2003-11-081-0/+1
* Optimize reversed(list) using a custom iterator.Raymond Hettinger2003-11-072-4/+98
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-062-1/+161
* Fix compiler warning about possible use of n without assignment.Jeremy Hylton2003-11-031-5/+6
* Use PyTuple_Pack() to simplify enumerate().Raymond Hettinger2003-11-021-5/+1
* Add list.sorted() classmethod.Raymond Hettinger2003-10-291-0/+37
* Deleting cyclic object comparison.Armin Rigo2003-10-282-186/+12
* Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItemRaymond Hettinger2003-10-271-1/+1
* Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap().Walter Dörwald2003-10-241-19/+20
* Avoid confusing name for the 3rd argument to str.replace().Fred Drake2003-10-221-3/+3
* Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353).Jeremy Hylton2003-10-211-1/+0
* Fix indentation.Jeremy Hylton2003-10-211-1/+1
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Make CObjects mutable. Fixes #477441.Martin v. Löwis2003-10-191-0/+14
* Patch #825679: Clarify semantics of .isfoo on empty strings.Martin v. Löwis2003-10-182-22/+24
* Patch #809535: Mention behaviour of seek on text files. Backported to 2.3.Martin v. Löwis2003-10-181-1/+3
* Fix typo found by Neal Norwitz.Raymond Hettinger2003-10-161-1/+1
* * list.sort() now supports three keyword arguments: cmp, key, and reverse.Raymond Hettinger2003-10-161-5/+228
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-124-29/+28
* Extended tuple's C API to include a new function, PyTuple_Pack() that isRaymond Hettinger2003-10-121-0/+22
* Use the simpler and faster PyArg_UnpackTuple() instead ofRaymond Hettinger2003-10-111-24/+24
* SF bug #820397: __nonzero__() returns 1/0Raymond Hettinger2003-10-111-1/+15
* Return a bool rather than an int from proxy_has_key().Guido van Rossum2003-10-091-1/+4
* Fix leak introduced by previous typeobject.c checkin.Guido van Rossum2003-10-091-4/+3
* SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net):Guido van Rossum2003-10-081-2/+4
* Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr.Jeremy Hylton2003-10-061-1/+1
* On c.l.py, Martin v. Löwis said that Py_UNICODE could be of a signed type,Tim Peters2003-09-161-137/+145
* Double-fix of crash in Unicode freelist handling.Jeremy Hylton2003-09-161-2/+7
* Fix leak in classobject.c. The leak surfaced on the error exit whenRaymond Hettinger2003-09-161-0/+1
* Change checks of PyUnicode_Resize() return value for clarity.Jeremy Hylton2003-09-161-18/+17
* Only release buffer after file has been closed. Fixes #800824.Martin v. Löwis2003-09-071-1/+1
* SF bug 801631: file.truncate fault on windows.Tim Peters2003-09-071-74/+66
* SF bug #800796: Difference between hash() and __hash__()Raymond Hettinger2003-09-051-1/+8
* Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize().Martin v. Löwis2003-09-041-5/+19
* SF patch #798467: Update docstring of has_key for bool changesRaymond Hettinger2003-09-012-2/+2
* Remove 'e.g.' from error messageRaymond Hettinger2003-08-301-3/+3
* SF bug #795506: Wrong handling of string format code for float values.Raymond Hettinger2003-08-272-0/+6
* Fix SF #789402, Memory leak on open()Neal Norwitz2003-08-151-0/+1
* Fix refcounting leak in charmaptranslate_lookup()Walter Dörwald2003-08-151-0/+1
* Fix another refcounting leak in PyUnicode_EncodeCharmap().Walter Dörwald2003-08-151-1/+3
* Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()).Walter Dörwald2003-08-151-0/+2