| Commit message (Expand) | Author | Age | Files | Lines |
* | Improve the message about metatype/metaclass conflicts. | Guido van Rossum | 2003-04-23 | 1 | -1/+4 |
|
|
* | Add a useful docstring to enumerate. | Jeremy Hylton | 2003-04-21 | 1 | -1/+6 |
|
|
* | - bool() called without arguments now returns False rather than | Guido van Rossum | 2003-04-19 | 1 | -2/+2 |
|
|
* | _Py_PrintReferenceAddresses(): also print the type name. In real use | Tim Peters | 2003-04-18 | 1 | -1/+2 |
|
|
* | _Py_PrintReferences(): Changed to print object address at start of each | Tim Peters | 2003-04-17 | 1 | -1/+16 |
|
|
* | SF # 595026: support for masks in getargs.c. | Thomas Heller | 2003-04-17 | 2 | -0/+146 |
|
|
* | - The repr() of a weakref object now shows the __name__ attribute of | Guido van Rossum | 2003-04-16 | 1 | -6/+15 |
|
|
* | Sigh. The crucial change was still missing from the previous | Guido van Rossum | 2003-04-16 | 1 | -1/+1 |
|
|
* | - super() no longer ignores data descriptors, except __class__. See | Guido van Rossum | 2003-04-16 | 1 | -4/+10 |
|
|
* | Fix three (!) object leaks in the code for assignment to __bases__. | Guido van Rossum | 2003-04-15 | 1 | -1/+3 |
|
|
* | Ouch, it's Carlo Verre, not Verre Carlo. | Guido van Rossum | 2003-04-15 | 1 | -1/+1 |
|
|
* | - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() | Guido van Rossum | 2003-04-15 | 1 | -1/+1 |
|
|
* | Close off the "Verre Carlo hack" as discussed on python-dev. | Guido van Rossum | 2003-04-14 | 1 | -0/+22 |
|
|
* | super_getattro(): kill some dead code; explain a mystery. | Guido van Rossum | 2003-04-14 | 1 | -18/+4 |
|
|
* | - list.insert(i, x) now interprets negative i as it would be | Guido van Rossum | 2003-04-14 | 1 | -2/+5 |
|
|
* | Attempt to make all the various string *strip methods the same. | Neal Norwitz | 2003-04-10 | 2 | -18/+18 |
|
|
* | Missing DECREF. | Jeremy Hylton | 2003-04-09 | 1 | -0/+1 |
|
|
* | Make it possible to call instancemethod() with 2 arguments. | Guido van Rossum | 2003-04-09 | 1 | -2/+2 |
|
|
* | Reformat a few docstrings that caused line wraps in help() output. | Guido van Rossum | 2003-04-09 | 2 | -12/+12 |
|
|
* | property_traverse() should also traverse into prop_doc -- there's no | Guido van Rossum | 2003-04-09 | 1 | -0/+1 |
|
|
* | Make staticmethods and classmethods participate in GC. | Jeremy Hylton | 2003-04-08 | 1 | -8/+45 |
|
|
* | New private API function _PyInstance_Lookup. gc will use this to figure | Tim Peters | 2003-04-07 | 1 | -0/+21 |
|
|
* | SF bug #699934: Obscure error message | Raymond Hettinger | 2003-04-06 | 1 | -4/+2 |
|
|
* | Change formatchar(), so that u"%c" % 0xffffffff now raises | Walter Dörwald | 2003-04-02 | 1 | -2/+2 |
|
|
* | Fix PyString_Format() so that '%c' % u'a' returns u'a' | Walter Dörwald | 2003-03-31 | 1 | -0/+7 |
|
|
* | Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. | Martin v. Löwis | 2003-03-29 | 1 | -22/+22 |
|
|
* | Refactoring: rename update_these_slots() into update_subclasses() and | Guido van Rossum | 2003-03-24 | 1 | -47/+68 |
|
|
* | Typo in comment. | Tim Peters | 2003-03-23 | 1 | -1/+1 |
|
|
* | Improved new Py_TRACE_REFS gimmicks. | Tim Peters | 2003-03-23 | 2 | -18/+37 |
|
|
* | slot_sq_contains(): This leaked a reference to the result of calling | Tim Peters | 2003-03-23 | 1 | -11/+12 |
|
|
* | Refactored some of the Py_TRACE_REFS code. New private API function | Tim Peters | 2003-03-23 | 2 | -10/+26 |
|
|
* | Oops! Used a wrong preprocessor symbol. | Tim Peters | 2003-03-23 | 1 | -1/+1 |
|
|
* | When Py_TRACE_REFS is defined, a list of all live objects is maintained in | Tim Peters | 2003-03-23 | 1 | -2/+15 |
|
|
* | _PyFloat_Pack4(): Removed needless call of floor(). | Tim Peters | 2003-03-21 | 1 | -1/+1 |
|
|
* | New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a | Tim Peters | 2003-03-20 | 1 | -0/+313 |
|
|
* | Renamed PyObject_GenericGetIter to PyObject_SelfIter | Raymond Hettinger | 2003-03-17 | 7 | -8/+8 |
|
|
* | Created PyObject_GenericGetIter(). | Raymond Hettinger | 2003-03-17 | 7 | -51/+14 |
|
|
* | SF bug #699934: Obscure error message | Raymond Hettinger | 2003-03-12 | 1 | -1/+4 |
|
|
* | Sf patch #700047: unicode object leaks refcount on resizing | Raymond Hettinger | 2003-03-09 | 1 | -0/+1 |
|
|
* | - The extended type structure used for heap types (new-style | Guido van Rossum | 2003-03-07 | 1 | -49/+34 |
|
|
* | SF patch #693753: fix for bug 639806: default for dict.pop | Raymond Hettinger | 2003-03-06 | 1 | -3/+15 |
|
|
* | Fix from Greg Chapman from SF bug #695651: a complex subclass | Guido van Rossum | 2003-03-02 | 1 | -2/+3 |
|
|
* | Removed duplicate test from inner loop. | Raymond Hettinger | 2003-03-01 | 1 | -6/+1 |
|
|
* | Fix SF bug #689659, 64-bit int and long hash keys incompatible | Neal Norwitz | 2003-02-23 | 1 | -2/+4 |
|
|
* | Implementing the salient parts of __reduce_ex__ in C. | Guido van Rossum | 2003-02-21 | 1 | -6/+229 |
|
|
* | Strange control flow in PyInt_AsLong. When nb_int is called inside | Thomas Heller | 2003-02-20 | 1 | -3/+3 |
|
|
* | PyObject_Generic{Get,Set}Attr: | Guido van Rossum | 2003-02-19 | 1 | -2/+4 |
|
|
* | Introducing __reduce_ex__, which is called with a protocol number argument | Guido van Rossum | 2003-02-18 | 1 | -4/+10 |
|
|
* | Removed unreferenced label. | Tim Peters | 2003-02-18 | 1 | -2/+1 |
|
|
* | The recent changes to super(), in particular supercheck(), broke when | Guido van Rossum | 2003-02-18 | 1 | -9/+7 |
|
|