1. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  2. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  3. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  4. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  5. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
  6. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  7. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  8. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  9. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  10. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  11. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  12. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  13. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  14. 57c179c Remove staticforward and statichere by Neal Norwitz · 18 years ago
  15. b2eaa44 Remove some old types for int based functions (Py_ssize_t is da thing now.) by Neal Norwitz · 18 years ago
  16. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  17. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  18. e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 18 years ago
  19. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  20. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  21. 97c65a8 Use Py_ssize_t for field sizes and offsets. by Martin v. Löwis · 18 years ago
  22. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  23. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  24. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  25. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  26. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  27. 5980ff2 SF bug 994255: Py_RETURN_NONE causes too much warnings by Tim Peters · 20 years ago
  28. 8c5aeaa Implemented a new Py_CLEAR macro. This macro should be used when by Jim Fulton · 20 years ago
  29. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 20 years ago
  30. 721b776 fixed buggy comment as per SF bug #827856 by Alex Martelli · 21 years ago
  31. 4b17e39 Modify the Py_RETURN_* macros to be of the form ``do {...} while (0)`` in order by Brett Cannon · 21 years ago
  32. 26b3a7b Modified the Py_RETURN_* macros by having the statements surrounded by {} in by Brett Cannon · 21 years ago
  33. d05235e Defined macros Py_RETURN_(TRUE|FALSE|NONE) as helper functions for returning by Brett Cannon · 21 years ago
  34. 661a9e3 After Raymond's remark, I changed the Stackless bits to by Christian Tismer · 21 years ago
  35. c26ff41 Generalized my type flags structure extension without being specific about by Christian Tismer · 21 years ago
  36. 6695ba8 Preserved one bit in type objects for Stackless. by Christian Tismer · 21 years ago
  37. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 21 years ago
  38. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  39. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 21 years ago
  40. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  41. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  42. e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 21 years ago
  43. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  44. febd61d A modest speedup of object deallocation. call_finalizer() did rather by Guido van Rossum · 22 years ago
  45. 808eb59 Added info about the right way to leave the body of a trashcan-protected by Tim Peters · 22 years ago
  46. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  47. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  48. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  49. 57f4ddd Uglified the new Py_REF_DEBUG (etc) lexical helper macro definitions so by Tim Peters · 22 years ago
  50. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  51. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  52. 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
  53. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  54. f6d1ea1 Change the type of the tp_free from 'destructor' to 'freefunc'. by Neil Schemenauer · 22 years ago
  55. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  56. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  57. 3abca12 SF bug #475327: type() produces incorrect error msg by Tim Peters · 23 years ago
  58. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  59. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  60. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 23 years ago
  61. b3f0d34 PyObject_ClearWeakRefs() is now a real function instead of a function pointer; by Fred Drake · 23 years ago
  62. 048eb75 Add Garbage Collection support to new-style classes (not yet to their by Guido van Rossum · 23 years ago
  63. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  64. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  65. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  66. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  67. 31ec142 Change the GC type flag since the API has changed. Allow types using by Neil Schemenauer · 23 years ago
  68. 609c7c8 Add decl of PySuper_Type; fixup comments for the two other types. by Guido van Rossum · 23 years ago
  69. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  70. d55657b Added comments before recently added/assigned slots in the type object, by Fred Drake · 23 years ago
  71. 9b9c972 Add new flags for PyType_Ready(): READY to explicitly indicate the by Guido van Rossum · 23 years ago
  72. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  73. 528b7eb - Rename PyType_InitDict() to PyType_Ready(). by Guido van Rossum · 23 years ago
  74. 64fbb33 Patch #448194: Debuging negative reference counts. by Martin v. Löwis · 23 years ago
  75. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  76. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  77. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  78. b60654b The return value from PyObject_ClearWeakRefs() is no longer meaningful, by Fred Drake · 23 years ago
  79. 033f312 Use a type flag to determine the applicability of the tp_weaklistoffset by Fred Drake · 23 years ago
  80. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 23 years ago
  81. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 23 years ago
  82. bacca54 Add a flag to indicate the presence of the tp_richcompare field, and by Guido van Rossum · 23 years ago
  83. 10418eb PyObject_Dump() -> _PyObject_Dump() by Barry Warsaw · 23 years ago
  84. 6a25e21 Add prototype for PyObject_Dump(). by Barry Warsaw · 23 years ago
  85. 7226429 Get rid of the declaration for _PyCompareState_Key. by Guido van Rossum · 23 years ago
  86. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 23 years ago
  87. 5f284ce Introduction to rich comparisons: by Guido van Rossum · 23 years ago
  88. a7ed694 - Add nb_cmp slot for new style nubmers. by Neil Schemenauer · 24 years ago
  89. 4826a89 Close SF bug 110826: a complaint about the way Python #define'd NULL. by Tim Peters · 24 years ago
  90. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  91. dd8dbdb The real suport for augmented assignment: new opcodes, new PyNumber and by Thomas Wouters · 24 years ago
  92. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  93. bd03bfc Remove legacy use of __SC__; no longer needed now that ANSI source is by Fred Drake · 24 years ago
  94. a90b23c One of the new prototypes was missing the "void" args. by Greg Stein · 24 years ago
  95. 9ace6bc Got RID of redundant coercions in longobject.c (as spotted by Greg by Tim Peters · 24 years ago
  96. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  97. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  98. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
  99. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  100. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago