1. 91a3b9e Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)' by Matthias Klose · 16 years ago
  2. 0610e08 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 16 years ago
  3. ea0d744 revert r71159 since it broke the build by Benjamin Peterson · 16 years ago
  4. 8212a82 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 16 years ago
  5. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 16 years ago
  6. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 16 years ago
  7. 14cb6bc sort of backport 66038 by aliasing PyObject_Bytes to PyObject_Str by Benjamin Peterson · 16 years ago
  8. 69ed101 Hopeful fix for issue 1878: remove Py_TPFLAGS_HAVE_VERSION_TAG from by Guido van Rossum · 16 years ago
  9. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  10. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
  11. 8d412f3 Issue #3274: Use a less common identifier for the temporary variable by Alexandre Vassalotti · 16 years ago
  12. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 16 years ago
  13. e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 16 years ago
  14. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  15. 0144f27 Remove locking part of new buffer protocol. by Travis E. Oliphant · 16 years ago
  16. 74a1dea #2989: add PyType_Modified(). by Georg Brandl · 16 years ago
  17. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  18. 19dfa3e Remove Py_Refcnt, Py_Type, Py_Size, as they were added only by Martin v. Löwis · 17 years ago
  19. a45ab9f NIL => NULL by Benjamin Peterson · 17 years ago
  20. 33451d8 Add necessary headers to back-port new buffer protocol to Python 2.6 by Travis E. Oliphant · 17 years ago
  21. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 17 years ago
  22. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  23. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 17 years ago
  24. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 17 years ago
  25. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 17 years ago
  26. 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
  27. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  28. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  29. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  30. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 19 years ago
  31. 9d2ced8 There were no comments explaining what Py_CLEAR() did or by Tim Peters · 19 years ago
  32. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 19 years ago
  33. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  34. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 19 years ago
  35. e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 19 years ago
  36. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  37. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 19 years ago
  38. 97c65a8 Use Py_ssize_t for field sizes and offsets. by Martin v. Löwis · 19 years ago
  39. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  40. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  41. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  42. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  43. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  44. 5980ff2 SF bug 994255: Py_RETURN_NONE causes too much warnings by Tim Peters · 20 years ago
  45. 8c5aeaa Implemented a new Py_CLEAR macro. This macro should be used when by Jim Fulton · 20 years ago
  46. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 21 years ago
  47. 721b776 fixed buggy comment as per SF bug #827856 by Alex Martelli · 21 years ago
  48. 4b17e39 Modify the Py_RETURN_* macros to be of the form ``do {...} while (0)`` in order by Brett Cannon · 21 years ago
  49. 26b3a7b Modified the Py_RETURN_* macros by having the statements surrounded by {} in by Brett Cannon · 21 years ago
  50. d05235e Defined macros Py_RETURN_(TRUE|FALSE|NONE) as helper functions for returning by Brett Cannon · 21 years ago
  51. 661a9e3 After Raymond's remark, I changed the Stackless bits to by Christian Tismer · 21 years ago
  52. c26ff41 Generalized my type flags structure extension without being specific about by Christian Tismer · 21 years ago
  53. 6695ba8 Preserved one bit in type objects for Stackless. by Christian Tismer · 21 years ago
  54. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 22 years ago
  55. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 22 years ago
  56. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 22 years ago
  57. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
  58. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
  59. e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 22 years ago
  60. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  61. febd61d A modest speedup of object deallocation. call_finalizer() did rather by Guido van Rossum · 22 years ago
  62. 808eb59 Added info about the right way to leave the body of a trashcan-protected by Tim Peters · 22 years ago
  63. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  64. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  65. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  66. 57f4ddd Uglified the new Py_REF_DEBUG (etc) lexical helper macro definitions so by Tim Peters · 22 years ago
  67. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  68. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  69. 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
  70. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  71. f6d1ea1 Change the type of the tp_free from 'destructor' to 'freefunc'. by Neil Schemenauer · 23 years ago
  72. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
  73. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  74. 3abca12 SF bug #475327: type() produces incorrect error msg by Tim Peters · 23 years ago
  75. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  76. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  77. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 23 years ago
  78. b3f0d34 PyObject_ClearWeakRefs() is now a real function instead of a function pointer; by Fred Drake · 23 years ago
  79. 048eb75 Add Garbage Collection support to new-style classes (not yet to their by Guido van Rossum · 23 years ago
  80. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  81. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  82. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  83. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  84. 31ec142 Change the GC type flag since the API has changed. Allow types using by Neil Schemenauer · 23 years ago
  85. 609c7c8 Add decl of PySuper_Type; fixup comments for the two other types. by Guido van Rossum · 23 years ago
  86. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  87. d55657b Added comments before recently added/assigned slots in the type object, by Fred Drake · 23 years ago
  88. 9b9c972 Add new flags for PyType_Ready(): READY to explicitly indicate the by Guido van Rossum · 23 years ago
  89. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  90. 528b7eb - Rename PyType_InitDict() to PyType_Ready(). by Guido van Rossum · 23 years ago
  91. 64fbb33 Patch #448194: Debuging negative reference counts. by Martin v. Löwis · 23 years ago
  92. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  93. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 24 years ago
  94. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 24 years ago
  95. b60654b The return value from PyObject_ClearWeakRefs() is no longer meaningful, by Fred Drake · 24 years ago
  96. 033f312 Use a type flag to determine the applicability of the tp_weaklistoffset by Fred Drake · 24 years ago
  97. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 24 years ago
  98. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 24 years ago
  99. bacca54 Add a flag to indicate the presence of the tp_richcompare field, and by Guido van Rossum · 24 years ago
  100. 10418eb PyObject_Dump() -> _PyObject_Dump() by Barry Warsaw · 24 years ago