1. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 16 years ago
  2. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 16 years ago
  3. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 16 years ago
  4. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  5. e7bb918 Whitespace cleanup by Neal Norwitz · 17 years ago
  6. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 17 years ago
  7. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 17 years ago
  8. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 17 years ago
  9. dfe5dc8 Make Python compile with --disable-unicode. by Georg Brandl · 17 years ago
  10. 30b7804 Fix refleak introduced in r59576. by Georg Brandl · 17 years ago
  11. 0b7b6fd Patch #1549 by Thomas Herve. by Guido van Rossum · 17 years ago
  12. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  13. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  14. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  15. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  16. a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 17 years ago
  17. 9790a27 Fix for #1303614 and #1174712: by Armin Rigo · 17 years ago
  18. 796fc99 Fix a usage of the dangerous pattern decref - modify field - incref. by Armin Rigo · 17 years ago
  19. c0ba52d Revert r53997 as per by Armin Rigo · 17 years ago
  20. cbd9ee6 When __slots__ are set to a unicode string, make it work the same as by Neal Norwitz · 17 years ago
  21. f102e24 Add a type.__init__() method that enforces the same signature as by Guido van Rossum · 17 years ago
  22. 143b564 - Bug #1683368: The object.__init__() and object.__new__() methods are by Guido van Rossum · 17 years ago
  23. 6f2d09c Patch #1623563: allow __class__ assignment for classes with __slots__. by Žiga Seilnacht · 17 years ago
  24. 20f43d3 Patch #1462488: prevent a segfault in object_reduce_ex() by splitting by Žiga Seilnacht · 17 years ago
  25. 71436f0 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 17 years ago
  26. 8903208 Patch #1675981: remove unreachable code from type.__new__() method. by Žiga Seilnacht · 17 years ago
  27. fa95569 Add checking for a number of metaclass error conditions. by Jeremy Hylton · 17 years ago
  28. 2d1f5c9 whitespace normalization by Jeremy Hylton · 17 years ago
  29. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 17 years ago
  30. fd96326 Bug #1653736: Properly discard third argument to slot_nb_inplace_power. by Martin v. Löwis · 18 years ago
  31. f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 18 years ago
  32. b3f3755 Fix wording in comment by Andrew M. Kuchling · 18 years ago
  33. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  34. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 18 years ago
  35. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  36. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  37. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 18 years ago
  38. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  39. 7a36f5f SF patch #1534048 (bug #1531003): fix typo in error message by Fred Drake · 18 years ago
  40. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  41. b114984 Fix refleak by Neal Norwitz · 18 years ago
  42. 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 18 years ago
  43. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 18 years ago
  44. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  45. 4e90810 Fix variable/format-char discrepancy in new-style class __getitem__, by Thomas Wouters · 18 years ago
  46. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 18 years ago
  47. ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 18 years ago
  48. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  49. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  50. ee36d65 Correct casts to char*. by Martin v. Löwis · 18 years ago
  51. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  52. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  53. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  54. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  55. 692cdbc Fix three nits found by Coverity, adding null checks and comments. by Guido van Rossum · 18 years ago
  56. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  57. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  58. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  59. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  60. 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
  61. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 18 years ago
  62. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  63. 50bf51a Fix ref/memory leak introduced in rev 41845. by Neal Norwitz · 19 years ago
  64. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 19 years ago
  65. fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
  66. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  67. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  68. ec862b9 (pedronis, arigo) by Armin Rigo · 19 years ago
  69. 630db60 - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 19 years ago
  70. 5661699 fix object.__divmod__.__doc__ by Anthony Baxter · 19 years ago
  71. 7726dc0 Fixed a quite misleading comment: a "not" should not have been there. by Armin Rigo · 19 years ago
  72. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 19 years ago
  73. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  74. bf60875 Patch #980082: Missing INCREF in PyType_Ready. by Martin v. Löwis · 20 years ago
  75. 3f3b668 Repair the same thinko in two places about handling of _Py_RefTotal in by Michael W. Hudson · 20 years ago
  76. 8d726ee Cosmetic spacing fix. by Raymond Hettinger · 20 years ago
  77. d56cbe5 Fix leak found by Eric Huss. by Raymond Hettinger · 20 years ago
  78. 3ecdb25 Fix for bug #966623 - classes created with type() in an exec(, {}) don't by Anthony Baxter · 20 years ago
  79. ff365c9 Get rid of gcc warning. by Hye-Shik Chang · 20 years ago
  80. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  81. 8a1a594 Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocol by Jim Fulton · 21 years ago
  82. 6a8bbdb Improve argument checking speed. by Raymond Hettinger · 21 years ago
  83. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  84. 0bd743c subtype_dealloc(): Simplified overly contorted retracking logic. With by Tim Peters · 21 years ago
  85. f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 21 years ago
  86. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  87. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  88. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  89. 56bb16f Use the simpler and faster PyArg_UnpackTuple() instead of by Raymond Hettinger · 21 years ago
  90. f34f264 SF bug #820397: __nonzero__() returns 1/0 by Raymond Hettinger · 21 years ago
  91. 22c3dda Fix leak introduced by previous typeobject.c checkin. by Guido van Rossum · 21 years ago
  92. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  93. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  94. a6a277d /* XXX From here until type is allocated, "return NULL" leaks bases! */ by Michael W. Hudson · 21 years ago
  95. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  96. f75d9fc Remove stray comments. by Jeremy Hylton · 21 years ago
  97. 1c7a0ea Remove unnecessary check in tests for slots allowed. by Jeremy Hylton · 21 years ago
  98. 3e3159c Require that __nonzero__() return a bool or exactly an int. by Jeremy Hylton · 21 years ago
  99. 090a349 Check return type of __nonzero__() method. by Jeremy Hylton · 21 years ago
  100. 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago