1. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  2. a5ca2e7 Remove 'extern' declaration for _Py_SwappedOp. by Brett Cannon · 20 years ago
  3. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  4. 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 20 years ago
  5. 2a7dede SF bug #1004669: Type returned from .keys() is not checked by Raymond Hettinger · 20 years ago
  6. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  7. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  8. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  9. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 20 years ago
  10. 8183fa4 Fix typo in comment. by Raymond Hettinger · 20 years ago
  11. 93d4481 Add identity shortcut to PyObject_RichCompareBool. by Raymond Hettinger · 20 years ago
  12. fb5a4e3 Removed two unneeded lines from PyObject_Compare(). by Brett Cannon · 21 years ago
  13. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  14. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  15. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  16. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  17. 21d7d4d _Py_PrintReferenceAddresses(): also print the type name. In real use by Tim Peters · 21 years ago
  18. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 21 years ago
  19. 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 21 years ago
  20. 51f8d38 Typo in comment. by Tim Peters · 21 years ago
  21. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  22. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 21 years ago
  23. 3e40c7f Oops! Used a wrong preprocessor symbol. by Tim Peters · 21 years ago
  24. 78be799 When Py_TRACE_REFS is defined, a list of all live objects is maintained in by Tim Peters · 21 years ago
  25. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  26. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  27. 90195e2 PyObject_Generic{Get,Set}Attr: by Guido van Rossum · 21 years ago
  28. fb50d3f default_3way_compare(): use PyNumber_Check(), rather than testing for by Guido van Rossum · 21 years ago
  29. 18e7083 SF bug 681122: Built-in function dir() causes refcount leak in baseclasses. by Tim Peters · 21 years ago
  30. 4440f22 Recursive compare machinery: The code that intended to exempt tuples by Tim Peters · 22 years ago
  31. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 22 years ago
  32. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  33. 6e08c14 PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR] by Guido van Rossum · 22 years ago
  34. 6248f44 Speedup for PyObject_IsTrue(): check for True and False first. by Guido van Rossum · 22 years ago
  35. 81912d4 Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almost by Guido van Rossum · 22 years ago
  36. 056fbf4 Another modest speedup in PyObject_GenericGetAttr(): inline the call by Guido van Rossum · 22 years ago
  37. c66ff44 Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr(). by Guido van Rossum · 22 years ago
  38. 3f19b10 Replace abort with Py_FatalError. by Martin v. Löwis · 22 years ago
  39. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  40. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  41. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  42. c6a3ff6 SF bug 578752: COUNT_ALLOCS vs heap types by Tim Peters · 22 years ago
  43. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  44. a6269a8 Removed 3 unlikely #includes that were only needed for the non-gc flavor by Tim Peters · 22 years ago
  45. 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
  46. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  47. 4178515 SF # 533070 Silence AIX C Compiler Warnings by Neal Norwitz · 22 years ago
  48. 51290d3 SF # 561244 Micro optimizations by Neal Norwitz · 22 years ago
  49. 3f8dae7 Fix typo by Neal Norwitz · 22 years ago
  50. a407300 Implement the intention of SF patch 472523 (but coded differently). by Guido van Rossum · 22 years ago
  51. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 22 years ago
  52. 4402241 Jim Fulton reported a segfault in dir(). A heavily proxied object by Guido van Rossum · 22 years ago
  53. 517c7d4 PyNumber_CoerceEx: this took a shortcut (not doing anything) when the by Guido van Rossum · 22 years ago
  54. af3e8de First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with by Tim Peters · 22 years ago
  55. bdf0eed Move PyObject_Malloc and PyObject_Free to obmalloc.c. by Neil Schemenauer · 22 years ago
  56. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  57. f589c05 If the GC is enabled then don't use the ob_type pointer to create a list by Neil Schemenauer · 22 years ago
  58. 1221c0a Build obmalloc.c directly instead of #include'ing from object.c. by Tim Peters · 22 years ago
  59. a1a9c51 Add pymalloc object memory management functions. These must be by Neil Schemenauer · 22 years ago
  60. 25f3dc2 Drop the PyCore_* memory API. by Neil Schemenauer · 22 years ago
  61. 0c160a0 Patch #517521: Consider byte strings before Unicode strings by Martin v. Löwis · 22 years ago
  62. a5d78cc Whether platform malloc(0) returns NULL has nothing to do with whether by Tim Peters · 22 years ago
  63. 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 22 years ago
  64. ebca9fc PyObject_Generic{Get,Set}Attr(): ensure that the attribute name is a by Guido van Rossum · 23 years ago
  65. 67754e9 Rehabilitated the fast-path richcmp code, and sped it up. It wasn't by Tim Peters · 23 years ago
  66. c99213f No code change -- just trying to document the return conditions for all by Tim Peters · 23 years ago
  67. 39a362d cleanup indentation by Jeremy Hylton · 23 years ago
  68. b8c65bc SF patch #470578: Fixes to synchronize unicode() and str() by Guido van Rossum · 23 years ago
  69. c993315 SF bug [#468061] __str__ ignored in str subclass. by Tim Peters · 23 years ago
  70. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  71. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  72. 7254e5a _PyObject_GetDictPtr(): by Tim Peters · 23 years ago
  73. b3f0d34 PyObject_ClearWeakRefs() is now a real function instead of a function pointer; by Fred Drake · 23 years ago
  74. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
  75. dd4d1c4 _PyObject_GetDictPtr(): when the offset is negative, always align -- by Guido van Rossum · 23 years ago
  76. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  77. 305b585 PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, by Tim Peters · 23 years ago
  78. bc7e863 merge_class_dict(): Clear the error if __bases__ doesn't exist. by Tim Peters · 23 years ago
  79. 5f5512d _PyObject_Dump(): print the type of the object. This is by far the by Guido van Rossum · 23 years ago
  80. 5a49ade More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  81. 8dbd3d8 PyObject_Dir(): by Guido van Rossum · 23 years ago
  82. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  83. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  84. 21922aa PyObject_Repr(): add missing ">" back at end of format string: "<%s by Guido van Rossum · 23 years ago
  85. fd34369 Remove GC related code. It lives in gcmodule now. by Neil Schemenauer · 23 years ago
  86. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  87. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  88. ba21a49 Add a function _Py_ReadyTypes() which initializes various and sundry by Guido van Rossum · 23 years ago
  89. 82fc51c Update to MvL's patch #424475 to avoid returning 2 when tp_compare by Guido van Rossum · 23 years ago
  90. 528b7eb - Rename PyType_InitDict() to PyType_Ready(). by Guido van Rossum · 23 years ago
  91. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  92. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  93. 3c29602 _Py_GetObjects(): GCC suggests to add () around && within || for some by Guido van Rossum · 23 years ago
  94. 0163d6d Patch #424475: Speed-up tp_compare usage, by special-casing the common by Martin v. Löwis · 23 years ago
  95. 5acbfcc Cosmetic: code under "else" clause was missing indent. by Tim Peters · 23 years ago
  96. 6d60b2e SF bug #422108 - Error in rich comparisons. by Tim Peters · 23 years ago
  97. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  98. 6aebded The weakref support in PyObject_InitVar() as well; this should have come out by Fred Drake · 23 years ago
  99. ba40ec4 Remove unnecessary intialization for the case of weakly-referencable objects; by Fred Drake · 23 years ago
  100. 4f288ab Printing objects to a real file still wasn't done right: if the by Guido van Rossum · 23 years ago