summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* Add a useful docstring to enumerate.Jeremy Hylton2003-04-211-1/+6
* - bool() called without arguments now returns False rather thanGuido van Rossum2003-04-191-2/+2
* _Py_PrintReferenceAddresses(): also print the type name. In real useTim Peters2003-04-181-1/+2
* _Py_PrintReferences(): Changed to print object address at start of eachTim Peters2003-04-171-1/+16
* SF # 595026: support for masks in getargs.c.Thomas Heller2003-04-172-0/+146
* - The repr() of a weakref object now shows the __name__ attribute ofGuido van Rossum2003-04-161-6/+15
* Sigh. The crucial change was still missing from the previousGuido van Rossum2003-04-161-1/+1
* - super() no longer ignores data descriptors, except __class__. SeeGuido van Rossum2003-04-161-4/+10
* Fix three (!) object leaks in the code for assignment to __bases__.Guido van Rossum2003-04-151-1/+3
* Ouch, it's Carlo Verre, not Verre Carlo.Guido van Rossum2003-04-151-1/+1
* - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences()Guido van Rossum2003-04-151-1/+1
* Close off the "Verre Carlo hack" as discussed on python-dev.Guido van Rossum2003-04-141-0/+22
* super_getattro(): kill some dead code; explain a mystery.Guido van Rossum2003-04-141-18/+4
* - list.insert(i, x) now interprets negative i as it would beGuido van Rossum2003-04-141-2/+5
* Attempt to make all the various string *strip methods the same.Neal Norwitz2003-04-102-18/+18
* Missing DECREF.Jeremy Hylton2003-04-091-0/+1
* Make it possible to call instancemethod() with 2 arguments.Guido van Rossum2003-04-091-2/+2
* Reformat a few docstrings that caused line wraps in help() output.Guido van Rossum2003-04-092-12/+12
* property_traverse() should also traverse into prop_doc -- there's noGuido van Rossum2003-04-091-0/+1
* Make staticmethods and classmethods participate in GC.Jeremy Hylton2003-04-081-8/+45
* New private API function _PyInstance_Lookup. gc will use this to figureTim Peters2003-04-071-0/+21
* SF bug #699934: Obscure error messageRaymond Hettinger2003-04-061-4/+2
* Change formatchar(), so that u"%c" % 0xffffffff now raisesWalter Dörwald2003-04-021-2/+2
* Fix PyString_Format() so that '%c' % u'a' returns u'a'Walter Dörwald2003-03-311-0/+7
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-22/+22
* Refactoring: rename update_these_slots() into update_subclasses() andGuido van Rossum2003-03-241-47/+68
* Typo in comment.Tim Peters2003-03-231-1/+1
* Improved new Py_TRACE_REFS gimmicks.Tim Peters2003-03-232-18/+37
* slot_sq_contains(): This leaked a reference to the result of callingTim Peters2003-03-231-11/+12
* Refactored some of the Py_TRACE_REFS code. New private API functionTim Peters2003-03-232-10/+26
* Oops! Used a wrong preprocessor symbol.Tim Peters2003-03-231-1/+1
* When Py_TRACE_REFS is defined, a list of all live objects is maintained inTim Peters2003-03-231-2/+15
* _PyFloat_Pack4(): Removed needless call of floor().Tim Peters2003-03-211-1/+1
* New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is aTim Peters2003-03-201-0/+313
* Renamed PyObject_GenericGetIter to PyObject_SelfIterRaymond Hettinger2003-03-177-8/+8
* Created PyObject_GenericGetIter().Raymond Hettinger2003-03-177-51/+14
* SF bug #699934: Obscure error messageRaymond Hettinger2003-03-121-1/+4
* Sf patch #700047: unicode object leaks refcount on resizingRaymond Hettinger2003-03-091-0/+1
* - The extended type structure used for heap types (new-styleGuido van Rossum2003-03-071-49/+34
* SF patch #693753: fix for bug 639806: default for dict.popRaymond Hettinger2003-03-061-3/+15
* Fix from Greg Chapman from SF bug #695651: a complex subclassGuido van Rossum2003-03-021-2/+3
* Removed duplicate test from inner loop.Raymond Hettinger2003-03-011-6/+1
* Fix SF bug #689659, 64-bit int and long hash keys incompatibleNeal Norwitz2003-02-231-2/+4
* Implementing the salient parts of __reduce_ex__ in C.Guido van Rossum2003-02-211-6/+229
* Strange control flow in PyInt_AsLong. When nb_int is called insideThomas Heller2003-02-201-3/+3
* PyObject_Generic{Get,Set}Attr:Guido van Rossum2003-02-191-2/+4
* Introducing __reduce_ex__, which is called with a protocol number argumentGuido van Rossum2003-02-181-4/+10
* Removed unreferenced label.Tim Peters2003-02-181-2/+1
* The recent changes to super(), in particular supercheck(), broke whenGuido van Rossum2003-02-181-9/+7
* Make __module__ writable except in restricted mode (like for classic classes).Guido van Rossum2003-02-182-2/+2