1. 3f1af5c Issue #6697: use %U format instead of _PyUnicode_AsString(), because by Victor Stinner · 14 years ago
  2. 6f1d049 Issue #6970: Remove redundant calls made when comparing objects. by Mark Dickinson · 15 years ago
  3. 2db046d Issue #6151: Make PyDescr_COMMON conform to standard C. by Alexandre Vassalotti · 15 years ago
  4. 097cd07 #6428: py3k requires that __bool__ return a bool (and not an int) by Amaury Forgeot d'Arc · 15 years ago
  5. 394996b Issue #5373: Remove restriction on null bytes in docstrings of classes. by Alexandre Vassalotti · 15 years ago
  6. 88fe5f9 Merged revisions 72690 via svnmerge from by Benjamin Peterson · 15 years ago
  7. 224205f Merged revisions 72461 via svnmerge from by Benjamin Peterson · 15 years ago
  8. 193152c Merged revisions 71860 via svnmerge from by Benjamin Peterson · 15 years ago
  9. f07d002 Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-70406,70418,70438,70464,70468 via svnmerge from by Benjamin Peterson · 15 years ago
  10. ee1ae7c fix len() when __len__() returns a non number type #5137 by Benjamin Peterson · 15 years ago
  11. 2a7d45b Issue #1717: add a DeprecationWarning in 3.x on type initialization by Mark Dickinson · 15 years ago
  12. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  13. 995d4cd Remove exception for non-NULL tp_compare that was introduced in r69188. by Mark Dickinson · 15 years ago
  14. c008a17 Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations by Mark Dickinson · 15 years ago
  15. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  16. b547979 Merged revisions 68568,68665 via svnmerge from by Benjamin Peterson · 15 years ago
  17. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  18. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  19. d746768 Issue #4910: replace "long" with "int" in docstring for __long__ slot and by Mark Dickinson · 16 years ago
  20. 91cc8fb Fix for bug 4360 "SystemError when method has both super() & closure". Patch by Barry Warsaw · 16 years ago
  21. 9262b84 Merged revisions 67246 via svnmerge from by Benjamin Peterson · 16 years ago
  22. 6019208 remove some more references to __cmp__ #1717 by Benjamin Peterson · 16 years ago
  23. ec569b7 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  24. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  25. d1abd25 Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash level indicator that the default hash implementation has not been inherited by Nick Coghlan · 16 years ago
  26. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  27. 00709aa Merged revisions 63856-63857,63859-63860 via svnmerge from by Martin v. Löwis · 16 years ago
  28. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  29. 1bcf35a #2963: fix method cache types. by Georg Brandl · 16 years ago
  30. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  31. a85998a Issue #1950: Fixed misusage of PyUnicode_AsString(). by Alexandre Vassalotti · 16 years ago
  32. 250ad61 Bug #2565: The repr() of type objects now calls them 'class', by Martin v. Löwis · 16 years ago
  33. 9e7f1d2 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61103 via svnmerge from by Christian Heimes · 16 years ago
  34. 2685563 Merged revisions 60364-60378 via svnmerge from by Christian Heimes · 16 years ago
  35. 412dc9c Merged revisions 60350-60363 via svnmerge from by Christian Heimes · 16 years ago
  36. a62da1d Merged revisions 59921-59932 via svnmerge from by Christian Heimes · 17 years ago
  37. fc6e8fe Simplifed argument parsing in object.__format__, added test case. by Eric Smith · 17 years ago
  38. ab078dd Issue #1393: object_richcompare() returns NotImplemented instead of by Guido van Rossum · 17 years ago
  39. f5243f0 Merge changes from 59576 from trunk to p3yk branch; these were skipped by Guido van Rossum · 17 years ago
  40. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  41. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  42. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  43. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  44. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  45. e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago
  46. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  47. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  48. f4780d0 Fix #1753395. by Georg Brandl · 17 years ago
  49. 80e7f27 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  50. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  51. a369c5a Use unicode by Neal Norwitz · 17 years ago
  52. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  53. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  54. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  55. 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
  56. 1e2b760 Fix an obvious bug caused by a switch to Unicode. by Guido van Rossum · 17 years ago
  57. 4737482 Add a default __prepare__() method to 'type', so it can be called by Guido van Rossum · 17 years ago
  58. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  59. ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago
  60. f630dac Must create heaptypes with unicode names. by Thomas Heller · 17 years ago
  61. 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
  62. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  63. fa33163 Discard unused function. by Guido van Rossum · 17 years ago
  64. 7516360 Simplify error formatting and type_repr(). by Walter Dörwald · 17 years ago
  65. 7815c5e Check unicode identifier directly instead of converting by Walter Dörwald · 17 years ago
  66. 4dbd01b __module__ is a unicode string now: by Walter Dörwald · 17 years ago
  67. 9b9905b Expect unicode in class_name. by Martin v. Löwis · 17 years ago
  68. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  69. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  70. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  71. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  72. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  73. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  74. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  75. 6b18a5b Fix refcounting bug reported by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  76. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 17 years ago
  77. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  78. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  79. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  80. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  81. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  82. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  83. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
  84. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  85. 0008602 remove debugging turd. by Thomas Wouters · 18 years ago
  86. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  87. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  88. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  89. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  90. 4011a24 Fix non-C89-compatible syntax. by Guido van Rossum · 18 years ago
  91. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  92. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  93. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  94. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  95. 3fc2ca3 Merge trunk up to 45598. by Thomas Wouters · 18 years ago
  96. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  97. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  98. 692cdbc Fix three nits found by Coverity, adding null checks and comments. by Guido van Rossum · 18 years ago
  99. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  100. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago