1. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 6 years ago
  2. 378edee bpo-32544: Speed up hasattr() and getattr() (GH-5173) by INADA Naoki · 7 years ago
  3. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 7 years ago
  4. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 7 years ago
  5. e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 7 years ago
  6. 4ab46d7 bpo-31497: Add private helper _PyType_Name(). (#3630) by Serhiy Storchaka · 7 years ago
  7. dae0276 bpo-30860: Fix a refleak. (#3567) by Eric Snow · 7 years ago
  8. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  9. 8728018 bpo-30860: Fix a refleak. (#3506) by Eric Snow · 7 years ago
  10. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  11. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  12. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  13. a66f9c6 bpo-30341: Improve _PyTrash_thread_destroy_chain() a little bit (#1545) by Xiang Zhang · 7 years ago
  14. 34d0ac8 Issue #29058: All stable API extensions added after Python 3.2 are now by Serhiy Storchaka · 8 years ago
  15. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 8 years ago
  16. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 8 years ago
  17. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  18. 5223f08 make _Py_static_string_init use a designated initializer by Benjamin Peterson · 8 years ago
  19. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  20. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  21. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  22. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  23. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  24. af4a1f2 fix indentation in Py_DECREF() by Victor Stinner · 8 years ago
  25. c04fb56 Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar by Martin Panter · 8 years ago
  26. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  27. beaa509 docs: Better comment for tp_as_async slot by Yury Selivanov · 9 years ago
  28. 6ef0590 Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. by Yury Selivanov · 9 years ago
  29. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  30. dfa4e04 Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  31. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  32. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
  33. df4518c Issue #22453: Removed non-documented macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  34. 81f68a7 Issue #22453: Warn against the use of leaking macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  35. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  36. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 10 years ago
  37. ca7b046 Issue #17162: Add PyType_GetSlot. by Martin v. Löwis · 10 years ago
  38. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 10 years ago
  39. c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 10 years ago
  40. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  41. 1c0689c Issue #19526: Exclude all new API from the stable ABI. by Martin v. Löwis · 11 years ago
  42. 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  43. 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 11 years ago
  44. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  45. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 11 years ago
  46. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  47. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  48. ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 11 years ago
  49. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  50. c13516b merge by Raymond Hettinger · 11 years ago
  51. 2ff2190 Issue #18594: Fix the fast path for collections.Counter(). by Raymond Hettinger · 11 years ago
  52. 9d95254 Issue #18772: fix the gdb plugin after the set implementation changes by Antoine Pitrou · 11 years ago
  53. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  54. da5eb5a don't expand the operand to Py_XINCREF/XDECREF/CLEAR/DECREF multiple times (closes #17206) by Benjamin Peterson · 11 years ago
  55. e5b45cc remove unused flag (closes #16505) by Benjamin Peterson · 12 years ago
  56. 4ca1cf3 Issue #16086: PyTypeObject.tp_flags and PyType_Spec.flags are now unsigned by Victor Stinner · 12 years ago
  57. 5b4faae Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  58. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  59. 9c56409 Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. by Martin v. Löwis · 12 years ago
  60. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  61. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  62. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  63. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  64. d9a3591 merge 3.2 by Benjamin Peterson · 12 years ago
  65. e249dca merge 3.2 by Benjamin Peterson · 12 years ago
  66. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 12 years ago
  67. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  68. 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
  69. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  70. 8eb1269 add generic implementation of a __dict__ descriptor for C types by Benjamin Peterson · 12 years ago
  71. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  72. bfebb7b improve abstract property support (closes #11610) by Benjamin Peterson · 13 years ago
  73. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  74. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  75. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  76. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  77. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  78. 7d2f9e1 Add Py_RETURN_NOTIMPLEMENTED macro. Fixes #12724. by Brian Curtin · 13 years ago
  79. 6916806 Issue #11135: Remove redundant doc field from PyType_Spec. by Martin v. Löwis · 13 years ago
  80. 738236d Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited ABI by Martin v. Löwis · 13 years ago
  81. c83bc3c Remove buffer API from stable ABI for now, see #10181. by Martin v. Löwis · 14 years ago
  82. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  83. aeb6cee Issue #10293: Remove obsolete field in the PyMemoryView structure, by Antoine Pitrou · 14 years ago
  84. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  85. fcd2a79 Merged revisions 84344 via svnmerge from by Antoine Pitrou · 14 years ago
  86. 1a9a9d5 Issue #1868: Eliminate subtle timing issues in thread-local objects by by Antoine Pitrou · 14 years ago
  87. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  88. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  89. 224205f Merged revisions 72461 via svnmerge from by Benjamin Peterson · 15 years ago
  90. 091c7b1 Merged revisions 71229,71271 via svnmerge from by Matthias Klose · 15 years ago
  91. ab96741 Merged revisions 71163 via svnmerge from by Benjamin Peterson · 15 years ago
  92. 9247e72 Merged revisions 71159 via svnmerge from by Matthias Klose · 15 years ago
  93. 3c16165 Change type of tp_reserved from cmpfunc to (void *); remove definition by Mark Dickinson · 15 years ago
  94. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  95. c008a17 Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations by Mark Dickinson · 15 years ago
  96. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  97. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  98. c3b3924 Issue #4580: slicing of memoryviews when itemsize != 1 is wrong. by Antoine Pitrou · 16 years ago
  99. 6019208 remove some more references to __cmp__ #1717 by Benjamin Peterson · 16 years ago
  100. 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago