summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix forMichael W. Hudson2003-08-152-5/+17
* My last fix left n used unitialized in tha a==b case.Michael W. Hudson2003-08-151-1/+1
* complex_new(): This could leak when the argument was neither string norTim Peters2003-08-151-0/+3
* Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfacesWalter Dörwald2003-08-141-3/+3
* Fix reference leak noted in test_types:Michael W. Hudson2003-08-141-9/+9
* Add a couple of decrefs to error paths.Michael W. Hudson2003-08-111-2/+4
* Fix silly typo in comment.Michael W. Hudson2003-08-111-1/+1
* /* XXX From here until type is allocated, "return NULL" leaks bases! */Michael W. Hudson2003-08-081-2/+9
* Repair refcounting on error return from type_set_bases.Michael W. Hudson2003-08-071-3/+6
* Remove code that tried to warn about shadowing builtin names after aNeil Schemenauer2003-07-161-66/+1
* Remove stray comments.Jeremy Hylton2003-07-161-1/+0
* Remove unnecessary check in tests for slots allowed.Jeremy Hylton2003-07-161-1/+1
* Remove proxy_print(), since that caused an inconsistency betweenFred Drake2003-07-141-10/+2
* Add whitespace.Jeremy Hylton2003-07-111-3/+3
* Support 'mbcs' as a 'built-in' encoding, so the C API can use it withoutMark Hammond2003-07-011-0/+19
* Fix SF 762891: "del p[key]" on proxy object raises SystemError()Raymond Hettinger2003-06-301-1/+5
* SF patch 703666: Several objects don't decref tmp on failure in subtype_newRaymond Hettinger2003-06-284-4/+13
* Require that __nonzero__() return a bool or exactly an int.Jeremy Hylton2003-06-271-6/+2
* Check return type of __nonzero__() method.Jeremy Hylton2003-06-271-1/+13
* Whitespace normalization.Walter Dörwald2003-06-251-3/+3
* Fix whitespace.Walter Dörwald2003-06-181-1/+1
* SF bug #753451: classmethod abuse --> SystemErrorRaymond Hettinger2003-06-181-0/+6
* Fix typo in comment.Walter Dörwald2003-06-171-1/+1
* Use _PyEval_SliceIndex to handle list.index() calls withWalter Dörwald2003-06-171-1/+3
* Whitespace normalization.Walter Dörwald2003-06-171-6/+6