summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-1/+1
* Patch #612627: Add encoding attribute to file objects, and determineMartin v. Löwis2003-05-101-1/+41
* SF bug #730296: Unexpected Changes in list IteratorRaymond Hettinger2003-05-072-4/+0
* SF patch #729395: Dictionary tuningRaymond Hettinger2003-05-071-2/+2
* SF bug #692959: new.function ignores keyword argumentsRaymond Hettinger2003-05-061-1/+4
* SF patch #729395: Dictionary tuningRaymond Hettinger2003-05-051-10/+16
* Add notes from python-dev about readonly dictionaries.Raymond Hettinger2003-05-051-0/+21
* SF patch 730594: assert from longobject.c, line 1215.Tim Peters2003-05-051-4/+4
* * Note how dummy entry re-use benefits use cases with interspersed deletesRaymond Hettinger2003-05-041-1/+11
* Somewhere along the way, the softspace attr of file objects became read-Tim Peters2003-05-041-1/+2
* Patch #708604: Check more function results. Will backport to 2.2.Martin v. Löwis2003-05-031-1/+8
* Add a reference to dictnotes.txt. It does no good if you don't know it'sRaymond Hettinger2003-05-031-0/+6
* Research notes and explorations for optimizing Python dictionaries.Raymond Hettinger2003-05-021-0/+189