1. 8903208 Patch #1675981: remove unreachable code from type.__new__() method. by Žiga Seilnacht · 17 years ago
  2. fa95569 Add checking for a number of metaclass error conditions. by Jeremy Hylton · 17 years ago
  3. 2d1f5c9 whitespace normalization by Jeremy Hylton · 17 years ago
  4. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 17 years ago
  5. fd96326 Bug #1653736: Properly discard third argument to slot_nb_inplace_power. by Martin v. Löwis · 18 years ago
  6. f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 18 years ago
  7. b3f3755 Fix wording in comment by Andrew M. Kuchling · 18 years ago
  8. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  9. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 18 years ago
  10. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  11. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  12. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 18 years ago
  13. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  14. 7a36f5f SF patch #1534048 (bug #1531003): fix typo in error message by Fred Drake · 18 years ago
  15. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  16. b114984 Fix refleak by Neal Norwitz · 18 years ago
  17. 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 18 years ago
  18. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 18 years ago
  19. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  20. 4e90810 Fix variable/format-char discrepancy in new-style class __getitem__, by Thomas Wouters · 18 years ago
  21. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 18 years ago
  22. ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 18 years ago
  23. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  24. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  25. ee36d65 Correct casts to char*. by Martin v. Löwis · 18 years ago
  26. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  27. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  28. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  29. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  30. 692cdbc Fix three nits found by Coverity, adding null checks and comments. by Guido van Rossum · 18 years ago
  31. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  32. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  33. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  34. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  35. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  36. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 18 years ago
  37. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  38. 50bf51a Fix ref/memory leak introduced in rev 41845. by Neal Norwitz · 19 years ago
  39. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 19 years ago
  40. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  41. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  42. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  43. ec862b9 (pedronis, arigo) by Armin Rigo · 19 years ago
  44. 630db60 - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 19 years ago
  45. 5661699 fix object.__divmod__.__doc__ by Anthony Baxter · 19 years ago
  46. 7726dc0 Fixed a quite misleading comment: a "not" should not have been there. by Armin Rigo · 19 years ago
  47. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 19 years ago
  48. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  49. bf60875 Patch #980082: Missing INCREF in PyType_Ready. by Martin v. Löwis · 20 years ago
  50. 3f3b668 Repair the same thinko in two places about handling of _Py_RefTotal in by Michael W. Hudson · 20 years ago
  51. 8d726ee Cosmetic spacing fix. by Raymond Hettinger · 20 years ago
  52. d56cbe5 Fix leak found by Eric Huss. by Raymond Hettinger · 20 years ago
  53. 3ecdb25 Fix for bug #966623 - classes created with type() in an exec(, {}) don't by Anthony Baxter · 20 years ago
  54. ff365c9 Get rid of gcc warning. by Hye-Shik Chang · 20 years ago
  55. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  56. 8a1a594 Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocol by Jim Fulton · 21 years ago
  57. 6a8bbdb Improve argument checking speed. by Raymond Hettinger · 21 years ago
  58. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  59. 0bd743c subtype_dealloc(): Simplified overly contorted retracking logic. With by Tim Peters · 21 years ago
  60. f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 21 years ago
  61. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  62. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  63. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  64. 56bb16f Use the simpler and faster PyArg_UnpackTuple() instead of by Raymond Hettinger · 21 years ago
  65. f34f264 SF bug #820397: __nonzero__() returns 1/0 by Raymond Hettinger · 21 years ago
  66. 22c3dda Fix leak introduced by previous typeobject.c checkin. by Guido van Rossum · 21 years ago
  67. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  68. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  69. a6a277d /* XXX From here until type is allocated, "return NULL" leaks bases! */ by Michael W. Hudson · 21 years ago
  70. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  71. f75d9fc Remove stray comments. by Jeremy Hylton · 21 years ago
  72. 1c7a0ea Remove unnecessary check in tests for slots allowed. by Jeremy Hylton · 21 years ago
  73. 3e3159c Require that __nonzero__() return a bool or exactly an int. by Jeremy Hylton · 21 years ago
  74. 090a349 Check return type of __nonzero__() method. by Jeremy Hylton · 21 years ago
  75. 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago
  76. 10147f7 Fixed a comment. by Brett Cannon · 21 years ago
  77. e2fdc61 Fix SF #749831, copy raises SystemError when getstate raises exception by Neal Norwitz · 21 years ago
  78. 1987c66 Fix for SF 742911. We now clear the weakrefs *before* calling __del__ by Guido van Rossum · 21 years ago
  79. 3cfe754 PyType_Ready(): Complain if the type is a base type, and gc'able, and by Tim Peters · 21 years ago
  80. be67d87 Fixing the previous patch to have the changes be to the proper docstrings. by Brett Cannon · 21 years ago
  81. 154da9b Fix docstrings for __(get|set|del)slice__ to mention that negative indices are not supported. by Brett Cannon · 21 years ago
  82. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  83. 636688d Improve the message about metatype/metaclass conflicts. by Guido van Rossum · 21 years ago
  84. 6cc5bb6 Sigh. The crucial change was still missing from the previous checkin. :-( by Guido van Rossum · 21 years ago
  85. 76ba09f - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 21 years ago
  86. 19a02ba Fix three (!) object leaks in the code for assignment to __bases__. by Guido van Rossum · 21 years ago
  87. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 21 years ago
  88. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 21 years ago
  89. 2fd02eb super_getattro(): kill some dead code; explain a mystery. by Guido van Rossum · 21 years ago
  90. d06483c Missing DECREF. by Jeremy Hylton · 21 years ago
  91. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  92. 8d24ee9 Refactoring: rename update_these_slots() into update_subclasses() and by Guido van Rossum · 21 years ago
  93. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  94. bf9b244 slot_sq_contains(): This leaked a reference to the result of calling by Tim Peters · 21 years ago
  95. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 21 years ago
  96. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  97. e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 21 years ago
  98. 036f999 Implementing the salient parts of __reduce_ex__ in C. by Guido van Rossum · 21 years ago
  99. c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 21 years ago
  100. 97e5ff5 Removed unreferenced label. by Tim Peters · 21 years ago