1. 4e90810 Fix variable/format-char discrepancy in new-style class __getitem__, by Thomas Wouters · 18 years ago
  2. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 18 years ago
  3. ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 18 years ago
  4. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  5. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  6. ee36d65 Correct casts to char*. by Martin v. Löwis · 18 years ago
  7. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  8. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  9. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  10. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  11. 692cdbc Fix three nits found by Coverity, adding null checks and comments. by Guido van Rossum · 18 years ago
  12. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  13. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  14. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  15. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  16. 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
  17. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 18 years ago
  18. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  19. 50bf51a Fix ref/memory leak introduced in rev 41845. by Neal Norwitz · 19 years ago
  20. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 19 years ago
  21. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  22. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  23. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  24. ec862b9 (pedronis, arigo) by Armin Rigo · 19 years ago
  25. 630db60 - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 19 years ago
  26. 5661699 fix object.__divmod__.__doc__ by Anthony Baxter · 19 years ago
  27. 7726dc0 Fixed a quite misleading comment: a "not" should not have been there. by Armin Rigo · 19 years ago
  28. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 19 years ago
  29. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  30. bf60875 Patch #980082: Missing INCREF in PyType_Ready. by Martin v. Löwis · 20 years ago
  31. 3f3b668 Repair the same thinko in two places about handling of _Py_RefTotal in by Michael W. Hudson · 20 years ago
  32. 8d726ee Cosmetic spacing fix. by Raymond Hettinger · 20 years ago
  33. d56cbe5 Fix leak found by Eric Huss. by Raymond Hettinger · 20 years ago
  34. 3ecdb25 Fix for bug #966623 - classes created with type() in an exec(, {}) don't by Anthony Baxter · 20 years ago
  35. ff365c9 Get rid of gcc warning. by Hye-Shik Chang · 20 years ago
  36. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  37. 8a1a594 Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocol by Jim Fulton · 21 years ago
  38. 6a8bbdb Improve argument checking speed. by Raymond Hettinger · 21 years ago
  39. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  40. 0bd743c subtype_dealloc(): Simplified overly contorted retracking logic. With by Tim Peters · 21 years ago
  41. f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 21 years ago
  42. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  43. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  44. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  45. 56bb16f Use the simpler and faster PyArg_UnpackTuple() instead of by Raymond Hettinger · 21 years ago
  46. f34f264 SF bug #820397: __nonzero__() returns 1/0 by Raymond Hettinger · 21 years ago
  47. 22c3dda Fix leak introduced by previous typeobject.c checkin. by Guido van Rossum · 21 years ago
  48. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  49. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  50. a6a277d /* XXX From here until type is allocated, "return NULL" leaks bases! */ by Michael W. Hudson · 21 years ago
  51. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  52. f75d9fc Remove stray comments. by Jeremy Hylton · 21 years ago
  53. 1c7a0ea Remove unnecessary check in tests for slots allowed. by Jeremy Hylton · 21 years ago
  54. 3e3159c Require that __nonzero__() return a bool or exactly an int. by Jeremy Hylton · 21 years ago
  55. 090a349 Check return type of __nonzero__() method. by Jeremy Hylton · 21 years ago
  56. 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago
  57. 10147f7 Fixed a comment. by Brett Cannon · 21 years ago
  58. e2fdc61 Fix SF #749831, copy raises SystemError when getstate raises exception by Neal Norwitz · 21 years ago
  59. 1987c66 Fix for SF 742911. We now clear the weakrefs *before* calling __del__ by Guido van Rossum · 21 years ago
  60. 3cfe754 PyType_Ready(): Complain if the type is a base type, and gc'able, and by Tim Peters · 21 years ago
  61. be67d87 Fixing the previous patch to have the changes be to the proper docstrings. by Brett Cannon · 21 years ago
  62. 154da9b Fix docstrings for __(get|set|del)slice__ to mention that negative indices are not supported. by Brett Cannon · 21 years ago
  63. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  64. 636688d Improve the message about metatype/metaclass conflicts. by Guido van Rossum · 21 years ago
  65. 6cc5bb6 Sigh. The crucial change was still missing from the previous checkin. :-( by Guido van Rossum · 21 years ago
  66. 76ba09f - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 21 years ago
  67. 19a02ba Fix three (!) object leaks in the code for assignment to __bases__. by Guido van Rossum · 21 years ago
  68. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 21 years ago
  69. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 21 years ago
  70. 2fd02eb super_getattro(): kill some dead code; explain a mystery. by Guido van Rossum · 21 years ago
  71. d06483c Missing DECREF. by Jeremy Hylton · 21 years ago
  72. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  73. 8d24ee9 Refactoring: rename update_these_slots() into update_subclasses() and by Guido van Rossum · 21 years ago
  74. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  75. bf9b244 slot_sq_contains(): This leaked a reference to the result of calling by Tim Peters · 21 years ago
  76. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 21 years ago
  77. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  78. e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 21 years ago
  79. 036f999 Implementing the salient parts of __reduce_ex__ in C. by Guido van Rossum · 21 years ago
  80. c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 21 years ago
  81. 97e5ff5 Removed unreferenced label. by Tim Peters · 21 years ago
  82. 8e80a72 The recent changes to super(), in particular supercheck(), broke when by Guido van Rossum · 21 years ago
  83. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
  84. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 22 years ago
  85. eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 22 years ago
  86. 9af48ff Inline create_specialmethod() -- since METH_CLASS is done differently by Guido van Rossum · 22 years ago
  87. 82ed25c Add basic arg sanity checking to wrap_descr_get(). This is called by Guido van Rossum · 22 years ago
  88. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 22 years ago
  89. c9172d3 Comment typo fix by Andrew M. Kuchling · 22 years ago
  90. ce8bcd8 Fix for SF #668433. I'm not explaining it here; ample comments are in the code. by Guido van Rossum · 22 years ago
  91. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  92. cd11880 Add a refinement to SLOT1BINFULL() that fixes the problem reported in by Guido van Rossum · 22 years ago
  93. 768158c Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug by Guido van Rossum · 22 years ago
  94. a828586 Punctuation fix. by Raymond Hettinger · 22 years ago
  95. 3bbc0ee Tighten the tests for assignment to __bases__: disallow empty tuple. by Guido van Rossum · 22 years ago
  96. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago
  97. ea7f75d slot_nb_nonzero(): Another leak uncovered by the sandbox datetime by Tim Peters · 22 years ago
  98. 61ce0a9 slot_tp_hash(): In the normal path, this leaked a reference to the by Tim Peters · 22 years ago
  99. ade8c8b Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  100. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago