1. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  2. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  3. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  4. d9a3591 merge 3.2 by Benjamin Peterson · 12 years ago
  5. e249dca merge 3.2 by Benjamin Peterson · 12 years ago
  6. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 12 years ago
  7. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  8. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  9. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  10. 8eb1269 add generic implementation of a __dict__ descriptor for C types by Benjamin Peterson · 12 years ago
  11. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  12. bfebb7b improve abstract property support (closes #11610) by Benjamin Peterson · 13 years ago
  13. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  14. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  15. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  16. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  17. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  18. 7d2f9e1 Add Py_RETURN_NOTIMPLEMENTED macro. Fixes #12724. by Brian Curtin · 13 years ago
  19. 6916806 Issue #11135: Remove redundant doc field from PyType_Spec. by Martin v. Löwis · 13 years ago
  20. 738236d Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited ABI by Martin v. Löwis · 14 years ago
  21. c83bc3c Remove buffer API from stable ABI for now, see #10181. by Martin v. Löwis · 14 years ago
  22. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  23. aeb6cee Issue #10293: Remove obsolete field in the PyMemoryView structure, by Antoine Pitrou · 14 years ago
  24. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  25. fcd2a79 Merged revisions 84344 via svnmerge from by Antoine Pitrou · 14 years ago
  26. 1a9a9d5 Issue #1868: Eliminate subtle timing issues in thread-local objects by by Antoine Pitrou · 14 years ago
  27. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  28. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  29. 224205f Merged revisions 72461 via svnmerge from by Benjamin Peterson · 15 years ago
  30. 091c7b1 Merged revisions 71229,71271 via svnmerge from by Matthias Klose · 15 years ago
  31. ab96741 Merged revisions 71163 via svnmerge from by Benjamin Peterson · 15 years ago
  32. 9247e72 Merged revisions 71159 via svnmerge from by Matthias Klose · 15 years ago
  33. 3c16165 Change type of tp_reserved from cmpfunc to (void *); remove definition by Mark Dickinson · 16 years ago
  34. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  35. c008a17 Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations by Mark Dickinson · 16 years ago
  36. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  37. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  38. c3b3924 Issue #4580: slicing of memoryviews when itemsize != 1 is wrong. by Antoine Pitrou · 16 years ago
  39. 6019208 remove some more references to __cmp__ #1717 by Benjamin Peterson · 16 years ago
  40. 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago
  41. c15a073 make bytes(o) respect __bytes__ #2415 by Benjamin Peterson · 16 years ago
  42. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  43. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  44. 2ee470f Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from by Georg Brandl · 16 years ago
  45. 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
  46. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  47. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  48. 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
  49. 3900088 Remove locking from buffer protocol as-per discussion. by Travis E. Oliphant · 16 years ago
  50. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  51. 2a691a8 Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via svnmerge from by Benjamin Peterson · 16 years ago
  52. 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
  53. 7d7f66b Remove unused and non-PEP-related entry from PyBufferProcs by Travis E. Oliphant · 16 years ago
  54. 2685563 Merged revisions 60364-60378 via svnmerge from by Christian Heimes · 17 years ago
  55. a62da1d Merged revisions 59921-59932 via svnmerge from by Christian Heimes · 17 years ago
  56. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  57. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  58. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  59. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  60. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  61. fe9bed0 Fix problems with memoryview object. There is still more to do to finish PEP 3118. The memory-view object needs to be fleshed out and the struct module needs to be modified. by Travis E. Oliphant · 17 years ago
  62. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  63. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  64. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  65. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  66. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  67. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  68. 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
  69. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  70. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  71. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 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. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  74. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  75. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  76. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
  77. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  78. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  79. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  80. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  81. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  82. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  83. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  84. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  85. 57c179c Remove staticforward and statichere by Neal Norwitz · 18 years ago
  86. b2eaa44 Remove some old types for int based functions (Py_ssize_t is da thing now.) by Neal Norwitz · 18 years ago
  87. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  88. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  89. e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 18 years ago
  90. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  91. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  92. 97c65a8 Use Py_ssize_t for field sizes and offsets. by Martin v. Löwis · 18 years ago
  93. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  94. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  95. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  96. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  97. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  98. 5980ff2 SF bug 994255: Py_RETURN_NONE causes too much warnings by Tim Peters · 20 years ago
  99. 8c5aeaa Implemented a new Py_CLEAR macro. This macro should be used when by Jim Fulton · 20 years ago
  100. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 20 years ago