summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix for SF 742911. We now clear the weakrefs *before* calling __del__Guido van Rossum2003-05-291-11/+12
* Add notes on use cases with paired accesses to the same key.Raymond Hettinger2003-05-281-5/+30
* * Beefed-up testsRaymond Hettinger2003-05-281-13/+42
* SF bug 705231: Assertion failed, python aborts.Tim Peters2003-05-241-6/+38
* PyType_Ready(): Complain if the type is a base type, and gc'able, andTim Peters2003-05-211-1/+31
* SF bug #604716: faster [None]*n or []*nRaymond Hettinger2003-05-211-0/+12
* Fixing the previous patch to have the changes be to the proper docstrings.Brett Cannon2003-05-201-8/+8
* Fix docstrings for __(get|set|del)slice__ to mention that negative indices ar...Brett Cannon2003-05-201-3/+9
* Only encode Unicode objects when printing them raw.Martin v. Löwis2003-05-181-1/+2
* Consider \U-escapes in raw-unicode-escape. Fixes #444514.Martin v. Löwis2003-05-181-3/+42
* Removed the out of date and no-longer-referenced xxobject.c exampleJim Fulton2003-05-161-108/+0