- be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 21 years ago
- 5ecd6c4 Fix typo in comment. by Walter Dörwald · 21 years ago
- e8049bef Use _PyEval_SliceIndex to handle list.index() calls with by Walter Dörwald · 21 years ago
- e0a1bb6 Whitespace normalization. by Walter Dörwald · 21 years ago
- 2743d87 Fix sloppy index() implementation: by Guido van Rossum · 21 years ago
- d05abde SF #754014: list.index() should accept optional start, end arguments by Raymond Hettinger · 21 years ago
- 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago
- 10147f7 Fixed a comment. by Brett Cannon · 21 years ago
- 4e3363e Warn about creating global variables by __setattr__ that shadow builtin by Neil Schemenauer · 21 years ago
- e2fdc61 Fix SF #749831, copy raises SystemError when getstate raises exception by Neal Norwitz · 21 years ago
- 1987c66 Fix for SF 742911. We now clear the weakrefs *before* calling __del__ by Guido van Rossum · 21 years ago
- e509b2a Add notes on use cases with paired accesses to the same key. by Raymond Hettinger · 21 years ago
- e8b0f04 * Beefed-up tests * Allow tuple re-use * Call tp_iternext directly by Raymond Hettinger · 21 years ago
- e87568d SF bug 705231: Assertion failed, python aborts. by Tim Peters · 21 years ago
- 3cfe754 PyType_Ready(): Complain if the type is a base type, and gc'able, and by Tim Peters · 21 years ago
- 6624e68 SF bug #604716: faster [None]*n or []*n by Raymond Hettinger · 21 years ago
- be67d87 Fixing the previous patch to have the changes be to the proper docstrings. by Brett Cannon · 21 years ago
- 154da9b Fix docstrings for __(get|set|del)slice__ to mention that negative indices are not supported. by Brett Cannon · 21 years ago
- 415da6e Only encode Unicode objects when printing them raw. by Martin v. Löwis · 21 years ago
- 9a3a9f7 Consider \U-escapes in raw-unicode-escape. Fixes #444514. by Martin v. Löwis · 21 years ago
- 19472b2 Removed the out of date and no-longer-referenced xxobject.c example by Jim Fulton · 21 years ago
- a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 22 years ago
- 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 22 years ago
- 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 22 years ago
- c8d2290 SF patch #729395: Dictionary tuning by Raymond Hettinger · 22 years ago
- 8657845 SF bug #692959: new.function ignores keyword arguments by Raymond Hettinger · 22 years ago
- 3539f6b SF patch #729395: Dictionary tuning by Raymond Hettinger · 22 years ago
- 4887a12 Add notes from python-dev about readonly dictionaries. by Raymond Hettinger · 22 years ago
- c7bc0b9 SF patch 730594: assert from longobject.c, line 1215. by Tim Peters · 22 years ago
- 258dfeb * Note how dummy entry re-use benefits use cases with interspersed deletes by Raymond Hettinger · 22 years ago
- 015dd82 Somewhere along the way, the softspace attr of file objects became read- by Tim Peters · 22 years ago
- cd12bfc Patch #708604: Check more function results. Will backport to 2.2. by Martin v. Löwis · 22 years ago
- 930427b Add a reference to dictnotes.txt. It does no good if you don't know it's by Raymond Hettinger · 22 years ago
- 5466296 Research notes and explorations for optimizing Python dictionaries. by Raymond Hettinger · 22 years ago
- fc61f9a Silence compiler warnings in VC 7. by Jeremy Hylton · 22 years ago
- 2af713c Squashed new compiler wngs about trying to compare pointers to by Tim Peters · 22 years ago
- 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 22 years ago
- 636688d Improve the message about metatype/metaclass conflicts. by Guido van Rossum · 22 years ago
- fbbe347 Add a useful docstring to enumerate. by Jeremy Hylton · 22 years ago
- aa86e35 - bool() called without arguments now returns False rather than by Guido van Rossum · 22 years ago
- 21d7d4d _Py_PrintReferenceAddresses(): also print the type name. In real use by Tim Peters · 22 years ago
- 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 22 years ago
- a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 22 years ago
- c1f6e8c - The repr() of a weakref object now shows the __name__ attribute of by Guido van Rossum · 22 years ago
- 6cc5bb6 Sigh. The crucial change was still missing from the previous checkin. :-( by Guido van Rossum · 22 years ago
- 76ba09f - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 22 years ago
- 19a02ba Fix three (!) object leaks in the code for assignment to __bases__. by Guido van Rossum · 22 years ago
- 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 22 years ago
- 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 22 years ago
- 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 22 years ago
- 2fd02eb super_getattro(): kill some dead code; explain a mystery. by Guido van Rossum · 22 years ago
- 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 22 years ago
- ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 22 years ago
- d06483c Missing DECREF. by Jeremy Hylton · 22 years ago
- 2fb9fdc Make it possible to call instancemethod() with 2 arguments. by Guido van Rossum · 22 years ago
- a713218 Reformat a few docstrings that caused line wraps in help() output. by Guido van Rossum · 22 years ago
- 00bf828 property_traverse() should also traverse into prop_doc -- there's no by Guido van Rossum · 22 years ago
- 400d8ee Make staticmethods and classmethods participate in GC. by Jeremy Hylton · 22 years ago
- df875b9 New private API function _PyInstance_Lookup. gc will use this to figure by Tim Peters · 22 years ago
- f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
- 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 22 years ago
- 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
- b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 22 years ago
- 8d24ee9 Refactoring: rename update_these_slots() into update_subclasses() and by Guido van Rossum · 22 years ago
- 51f8d38 Typo in comment. by Tim Peters · 22 years ago
- 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 22 years ago
- bf9b244 slot_sq_contains(): This leaked a reference to the result of calling by Tim Peters · 22 years ago
- 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 22 years ago
- 3e40c7f Oops! Used a wrong preprocessor symbol. by Tim Peters · 22 years ago
- 78be799 When Py_TRACE_REFS is defined, a list of all live objects is maintained in by Tim Peters · 22 years ago
- f1ed934 _PyFloat_Pack4(): Removed needless call of floor(). by Tim Peters · 22 years ago
- 9905b94 New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a by Tim Peters · 22 years ago
- 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
- 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
- 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
- c8df578 Sf patch #700047: unicode object leaks refcount on resizing by Raymond Hettinger · 22 years ago
- e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 22 years ago
- a3e1e4c SF patch #693753: fix for bug 639806: default for dict.pop by Raymond Hettinger · 22 years ago
- 4eadfa2 Fix from Greg Chapman from SF bug #695651: a complex subclass by Guido van Rossum · 22 years ago
- 8049dde Removed duplicate test from inner loop. by Raymond Hettinger · 22 years ago
- d5a65a7 Fix SF bug #689659, 64-bit int and long hash keys incompatible by Neal Norwitz · 22 years ago
- 036f999 Implementing the salient parts of __reduce_ex__ in C. by Guido van Rossum · 22 years ago
- 850566b Strange control flow in PyInt_AsLong. When nb_int is called inside by Thomas Heller · 22 years ago
- 90195e2 PyObject_Generic{Get,Set}Attr: by Guido van Rossum · 22 years ago
- c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 22 years ago
- 97e5ff5 Removed unreferenced label. by Tim Peters · 22 years ago
- 8e80a72 The recent changes to super(), in particular supercheck(), broke when by Guido van Rossum · 22 years ago
- 6b29c01 Make __module__ writable except in restricted mode (like for classic classes). by Guido van Rossum · 22 years ago
- ff71c98 Make __module__ settable on functions and methods. by Jeremy Hylton · 22 years ago
- fb50d3f default_3way_compare(): use PyNumber_Check(), rather than testing for by Guido van Rossum · 22 years ago
- 6921eca Make PyNumber_Check() a bit more careful, since all sorts of things by Guido van Rossum · 22 years ago
- 0732301 Add closing ) in comment by Neal Norwitz · 22 years ago
- 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 22 years ago
- 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
- 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 22 years ago
- a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 22 years ago
- e5b130b Add missing cast in previous fix. by Guido van Rossum · 22 years ago
- 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 22 years ago
- ec74f2f Add more missing PyErr_NoMemory() after failled memory allocs by Neal Norwitz · 22 years ago
- eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 22 years ago