summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-201-4/+30
* subtype_dealloc(): A more complete fix for critical bug 840829 +Tim Peters2003-11-131-11/+23
* Backport of fix for SF bug 840829, memory corruption in some cases ofTim Peters2003-11-131-1/+6
* Backport checkin:Walter Dörwald2003-10-241-19/+20
* Avoid confusing name for the 3rd argument to str.replace().Fred Drake2003-10-221-3/+3
* Backport removal of bogus Py_DECREF() and indentation fix.Jeremy Hylton2003-10-211-2/+1
* Backport checkin:Walter Dörwald2003-10-201-1/+1
* 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.Martin v. Löwis2003-10-181-1/+3
* Backport fix to SF bug #820397: __nonzero__() returns 1/0Raymond Hettinger2003-10-121-1/+15
* SF patch #820195: make object.__contains__() returns True or False insteadRaymond Hettinger2003-10-092-2/+6
* Backport Tim's portability improvement and comments.Jeremy Hylton2003-09-171-1/+13
* Backport: Double-fix of crash in Unicode freelist handling.Jeremy Hylton2003-09-161-1/+2
* Fix leak in classobject.c. The leak surfaced on the error exit whenRaymond Hettinger2003-09-161-0/+1
* Backport Neal's fix for bug #789402 -- a memory leak in fileobject.cRaymond Hettinger2003-09-161-0/+1
* Only release buffer after file has been closed. Fixes #800824.Martin v. Löwis2003-09-071-1/+1
* 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
* Backport checkin:Walter Dörwald2003-08-151-0/+1
* Backport checkin:Walter Dörwald2003-08-151-1/+3
* Backport checkin:Walter Dörwald2003-08-151-0/+2
* Backport my fix to my fix:Michael W. Hudson2003-08-151-1/+1
* Backport checkins:Walter Dörwald2003-08-141-3/+3
* And backport-2-3-4:Michael W. Hudson2003-08-141-9/+9
* As penance for forgetting to flag my last checkins as bugfix candidates,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
* Fix sloppy index() implementation:Guido van Rossum2003-06-171-2/+12
* SF #754014: list.index() should accept optional start, end argumentsRaymond Hettinger2003-06-171-5/+10
* - SF patch 751998 fixes an unwanted side effect of the previous fixGuido van Rossum2003-06-131-5/+13
* Fixed a comment.Brett Cannon2003-06-111-1/+1
* Warn about creating global variables by __setattr__ that shadow builtinNeil Schemenauer2003-06-091-1/+66
* Fix SF #749831, copy raises SystemError when getstate raises exceptionNeal Norwitz2003-06-081-0/+2