1. 463b86a Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  2. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  3. 253021d Issue #27366: Fix init_subclass() by Victor Stinner · 8 years ago
  4. 6911267 slot_tp_iter() now uses fast call by Victor Stinner · 8 years ago
  5. 20a3007 slot_nb_bool() now uses fast call by Victor Stinner · 8 years ago
  6. a12eec4 Issue #27128: Cleanup slot_nb_bool() by Victor Stinner · 8 years ago
  7. 5e87749 Issue #27128: slot_sq_item() uses fast call by Victor Stinner · 8 years ago
  8. 018016d Issue #27128: Cleanup slot_sq_item() by Victor Stinner · 8 years ago
  9. f736c26 call_method() and call_maybe() now use fast call by Victor Stinner · 8 years ago
  10. 94463c9 Cleanup call_method() and call_maybe() by Victor Stinner · 8 years ago
  11. 56142c7 Merge 3.5 (fix refleak in call_maybe()) by Victor Stinner · 8 years ago
  12. 6902ddf Fix a refleak in call_maybe() by Victor Stinner · 8 years ago
  13. 59e9ca6 Merge 3.5 (fix refleak in call_method) by Victor Stinner · 8 years ago
  14. d925bd5 Fix a refleak in call_method() by Victor Stinner · 8 years ago
  15. a7720f6 contains and rich compare slots use fast call by Victor Stinner · 8 years ago
  16. 3f015a6 Issue #27157: Make only type() itself accept the one-argument form by Berker Peksag · 8 years ago
  17. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  18. 02b75ab Merge spelling and grammar fixes from 3.5 by Martin Panter · 8 years ago
  19. 69332c1 Fix spelling and grammar in documentation and code comments by Martin Panter · 8 years ago
  20. 01d1719 Issue #27366: Tweak PEP 487 documentation by Berker Peksag · 8 years ago
  21. d78448e Issue #27366: Implement PEP 487 by Nick Coghlan · 8 years ago
  22. ab078e9 Backed out changeset af29d89083b3 (closes #25548) (closes #27498) by Benjamin Peterson · 8 years ago
  23. c13d85b merge 3.5 (#27248) by Benjamin Peterson · 8 years ago
  24. 27007dc fix refleaks in PyDict_SetItem error cases (closes #27248) by Benjamin Peterson · 8 years ago
  25. 841de28 Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. by Serhiy Storchaka · 8 years ago
  26. 484c913 Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. by Serhiy Storchaka · 8 years ago
  27. 5801ecb Issue #25548: Showing memory address of class objects in repl by Kushal Das · 8 years ago
  28. 6ca4260 merge 3.5 by Benjamin Peterson · 8 years ago
  29. c352620 backout 3c9512d8ac0d by Benjamin Peterson · 8 years ago
  30. 27ba886 Issue #27118: Clean up Py_XINCREF/Py_XDECREF in typeobject.c. by Serhiy Storchaka · 8 years ago
  31. 0ac70c0 Fix typos. Reported by andportnoy on GitHub. by Berker Peksag · 8 years ago
  32. abe4d52 Merge doc and comment fixes from 3.5 by Martin Panter · 8 years ago
  33. 8f26565 Fix spelling (inital), grammar (may translates) in documentation, comments by Martin Panter · 8 years ago
  34. 131b8f8 Issue #26718: super.__init__ no longer leaks memory if called multiple times. by Serhiy Storchaka · 8 years ago
  35. 3d74976 Issue #26718: super.__init__ no longer leaks memory if called multiple times. by Serhiy Storchaka · 8 years ago
  36. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  37. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  38. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  39. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  40. 2c02849 merge 3.5 (#25731) by Benjamin Peterson · 9 years ago
  41. 9ad1154 set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731) by Benjamin Peterson · 9 years ago
  42. 3d220cc As per further discussion, re-enable the typeobject.c guard for picklability. by Barry Warsaw · 9 years ago
  43. 09880c8 Comment out some tests that won't pass now that we've reverted the by Barry Warsaw · 9 years ago
  44. ec71f17 Issue #22995: [UPDATE] Comment out the one of the pickleability tests in by Barry Warsaw · 9 years ago
  45. 885e193 Issue #22995: [UPDATE] Comment out the one of the pickleability tests in by Barry Warsaw · 9 years ago
  46. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 9 years ago
  47. 288cb25 Issue #25961: Disallowed null characters in the type name. by Serhiy Storchaka · 9 years ago
  48. 42bf8fc Issue #25961: Disallowed null characters in the type name. by Serhiy Storchaka · 9 years ago
  49. 1ed017a Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. by Serhiy Storchaka · 9 years ago
  50. f9253c9 Issue #22995: Instances of extension types with a state that aren't by Serhiy Storchaka · 9 years ago
  51. f81be8a Issue #22995: Instances of extension types with a state that aren't by Serhiy Storchaka · 9 years ago
  52. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  53. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  54. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  55. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  56. 6a50e79 Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  57. 670d78a Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  58. d28bb62 Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  59. 12ab296 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  60. 609a2e1 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  61. d7a4415 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  62. 0d554d7 Issue #24164: Objects that need calling ``__new__`` with keyword arguments, by Serhiy Storchaka · 9 years ago
  63. 585a6ac Merge typo fixes from 3.5 by Martin Panter · 9 years ago
  64. 3f930dc Merge typo fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  65. 9955a37 Various minor typos in documentation and comments by Martin Panter · 9 years ago
  66. cdae2cb merge 3.5 (closes #24806) by Benjamin Peterson · 9 years ago
  67. 59dc696 merge 3.4 (#24806) by Benjamin Peterson · 9 years ago
  68. bd6c41a prevent unacceptable bases from becoming bases through multiple inheritance (#24806) by Benjamin Peterson · 9 years ago
  69. ba5f590 Issue #24912: Prevent __class__ assignment to immutable built-in objects. (Merge 3.5 -> 3.6) by Guido van Rossum · 9 years ago
  70. 7d293ee Issue #24912: Prevent __class__ assignment to immutable built-in objects. by Guido van Rossum · 9 years ago
  71. 99bb14b type_call() now detect bugs in type new and init by Victor Stinner · 9 years ago
  72. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  73. 553e156 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  74. d741a88 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  75. a48db2b Issue #24268: Address some PEP 489 refleaks by Nick Coghlan · 9 years ago
  76. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  77. 8ef887c Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. by Zachary Ware · 9 years ago
  78. a63cc21 Issue #23726: Don't enable GC for user subclasses of non-GC types that don't add any new fields. by Antoine Pitrou · 9 years ago
  79. 63afdaa Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 9 years ago
  80. a654510 Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 9 years ago
  81. 71c6f44 Fixed a typo. by Serhiy Storchaka · 9 years ago
  82. 490055a Issue #20204: Deprecation warning is now raised for builtin type without the by Serhiy Storchaka · 9 years ago
  83. d327d8d Fix definition mismatch for type_is_subtype_base_chain. by Steve Dower · 10 years ago
  84. b4e20bb Fix definition mismatch for type_is_subtype_base_chain. by Steve Dower · 10 years ago
  85. 6c62ac1 merge 3.4 (#22735) by Benjamin Peterson · 10 years ago
  86. 104b9e0 fix many custom mro() edge cases and improve code quality (#22735) by Benjamin Peterson · 10 years ago
  87. 9d4cbcc allow changing __class__ between a heaptype and non-heaptype in some cases (closes #22986) by Benjamin Peterson · 10 years ago
  88. 66acbb2 Issue #22079: PyType_Ready() now checks that statically allocated type has by Serhiy Storchaka · 10 years ago
  89. e09bcc8 Issue #22079: PyType_Ready() now checks that statically allocated type has by Serhiy Storchaka · 10 years ago
  90. 34af502 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  91. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  92. 707b5cc Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX by Serhiy Storchaka · 10 years ago
  93. e823933 remove tautological condition (closes #22954) by Benjamin Peterson · 10 years ago
  94. 0a59d55 merge 3.4 (#22954) by Benjamin Peterson · 10 years ago
  95. 2a40e36 Issue #22847: Improve method cache efficiency. by Antoine Pitrou · 10 years ago
  96. b8fa289 merge with 3.4 by Georg Brandl · 10 years ago
  97. e1d26f3 Closes #22772: fix __ifloordiv__ and __itruediv__ docstring. by Georg Brandl · 10 years ago
  98. 12174a5 Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  99. 331a726 Issue #22082: Fix a compiler warning (function is not a prototype) by Victor Stinner · 10 years ago
  100. 996b671 Issue #22082: Clear interned strings in slotdefs. by Martin v. Löwis · 10 years ago