1. 386072e Merge from 3.6. by Serhiy Storchaka · 7 years ago
  2. 49010ee Revert changeset 1f31bf3f76f5 (issue5322) except tests. by Serhiy Storchaka · 7 years ago
  3. 5adfac2 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 7 years ago
  4. 0c78634 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 7 years ago
  5. 19d2467 Issue #23722: improve __classcell__ compatibility by Nick Coghlan · 7 years ago
  6. 9ec0772 Issue #28797: Modifying the class __dict__ inside the __set_name__ method of by Serhiy Storchaka · 7 years ago
  7. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  8. fab6acd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 8 years ago
  9. f5894dd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 8 years ago
  10. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  11. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  12. 7984bff Issue #28385: An error message when non-empty format spec is passed to by Serhiy Storchaka · 8 years ago
  13. d1af5ef Issue #28385: An error message when non-empty format spec is passed to by Serhiy Storchaka · 8 years ago
  14. d5d32d2 Issue #28214: Improved exception reporting for problematic __set_name__ by Serhiy Storchaka · 8 years ago
  15. 5cade88 Check return value of _PyDict_SetItemId() by Christian Heimes · 8 years ago
  16. 56588b7 Issue #26906: Resolving special methods of uninitialized type now causes by Serhiy Storchaka · 8 years ago
  17. 8ef3460 Issue #26906: Resolving special methods of uninitialized type now causes by Serhiy Storchaka · 8 years ago
  18. e45b7c0 Issue #18287: PyType_Ready() now checks that tp_name is not NULL. by Serhiy Storchaka · 8 years ago
  19. de0574b Issue #18287: PyType_Ready() now checks that tp_name is not NULL. by Serhiy Storchaka · 8 years ago
  20. 8044809 merge 3.5 (#26617) by Benjamin Peterson · 8 years ago
  21. 8f657c3 ensure gc tracking is off when invoking weakref callbacks (closes #26617) by Benjamin Peterson · 8 years ago
  22. afd02a4 Issue #28214: Now __set_name__ is looked up on the class instead of the by Serhiy Storchaka · 8 years ago
  23. 944368e Issue #23722: Initialize __class__ from type.__new__() by Nick Coghlan · 8 years ago
  24. 7c19aff Issue #25856: The __module__ attribute of extension classes and functions by Serhiy Storchaka · 8 years ago
  25. 6cb526e remove unconvincing use of Py_LOCAL by Benjamin Peterson · 8 years ago
  26. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 8 years ago
  27. 07a2a1b Additional safe-guard against dereferencing NULL in reduce_newobj by Christian Heimes · 8 years ago
  28. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  29. ad8c83a Avoid inefficient way to call functions without argument by Victor Stinner · 8 years ago
  30. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  31. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  32. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 8 years ago
  33. 463b86a Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  34. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  35. 253021d Issue #27366: Fix init_subclass() by Victor Stinner · 8 years ago
  36. 6911267 slot_tp_iter() now uses fast call by Victor Stinner · 8 years ago
  37. 20a3007 slot_nb_bool() now uses fast call by Victor Stinner · 8 years ago
  38. a12eec4 Issue #27128: Cleanup slot_nb_bool() by Victor Stinner · 8 years ago
  39. 5e87749 Issue #27128: slot_sq_item() uses fast call by Victor Stinner · 8 years ago
  40. 018016d Issue #27128: Cleanup slot_sq_item() by Victor Stinner · 8 years ago
  41. f736c26 call_method() and call_maybe() now use fast call by Victor Stinner · 8 years ago
  42. 94463c9 Cleanup call_method() and call_maybe() by Victor Stinner · 8 years ago
  43. 56142c7 Merge 3.5 (fix refleak in call_maybe()) by Victor Stinner · 8 years ago
  44. 6902ddf Fix a refleak in call_maybe() by Victor Stinner · 8 years ago
  45. 59e9ca6 Merge 3.5 (fix refleak in call_method) by Victor Stinner · 8 years ago
  46. d925bd5 Fix a refleak in call_method() by Victor Stinner · 8 years ago
  47. a7720f6 contains and rich compare slots use fast call by Victor Stinner · 8 years ago
  48. 3f015a6 Issue #27157: Make only type() itself accept the one-argument form by Berker Peksag · 8 years ago
  49. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  50. 02b75ab Merge spelling and grammar fixes from 3.5 by Martin Panter · 8 years ago
  51. 69332c1 Fix spelling and grammar in documentation and code comments by Martin Panter · 8 years ago
  52. 01d1719 Issue #27366: Tweak PEP 487 documentation by Berker Peksag · 8 years ago
  53. d78448e Issue #27366: Implement PEP 487 by Nick Coghlan · 8 years ago
  54. ab078e9 Backed out changeset af29d89083b3 (closes #25548) (closes #27498) by Benjamin Peterson · 8 years ago
  55. c13d85b merge 3.5 (#27248) by Benjamin Peterson · 8 years ago
  56. 27007dc fix refleaks in PyDict_SetItem error cases (closes #27248) by Benjamin Peterson · 8 years ago
  57. 841de28 Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. by Serhiy Storchaka · 8 years ago
  58. 484c913 Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. by Serhiy Storchaka · 8 years ago
  59. 5801ecb Issue #25548: Showing memory address of class objects in repl by Kushal Das · 8 years ago
  60. 6ca4260 merge 3.5 by Benjamin Peterson · 8 years ago
  61. c352620 backout 3c9512d8ac0d by Benjamin Peterson · 8 years ago
  62. 27ba886 Issue #27118: Clean up Py_XINCREF/Py_XDECREF in typeobject.c. by Serhiy Storchaka · 8 years ago
  63. 0ac70c0 Fix typos. Reported by andportnoy on GitHub. by Berker Peksag · 8 years ago
  64. abe4d52 Merge doc and comment fixes from 3.5 by Martin Panter · 8 years ago
  65. 8f26565 Fix spelling (inital), grammar (may translates) in documentation, comments by Martin Panter · 8 years ago
  66. 131b8f8 Issue #26718: super.__init__ no longer leaks memory if called multiple times. by Serhiy Storchaka · 8 years ago
  67. 3d74976 Issue #26718: super.__init__ no longer leaks memory if called multiple times. by Serhiy Storchaka · 8 years ago
  68. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  69. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  70. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  71. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  72. 2c02849 merge 3.5 (#25731) by Benjamin Peterson · 8 years ago
  73. 9ad1154 set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731) by Benjamin Peterson · 8 years ago
  74. 3d220cc As per further discussion, re-enable the typeobject.c guard for picklability. by Barry Warsaw · 8 years ago
  75. 09880c8 Comment out some tests that won't pass now that we've reverted the by Barry Warsaw · 8 years ago
  76. ec71f17 Issue #22995: [UPDATE] Comment out the one of the pickleability tests in by Barry Warsaw · 8 years ago
  77. 885e193 Issue #22995: [UPDATE] Comment out the one of the pickleability tests in by Barry Warsaw · 8 years ago
  78. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 8 years ago
  79. 288cb25 Issue #25961: Disallowed null characters in the type name. by Serhiy Storchaka · 8 years ago
  80. 42bf8fc Issue #25961: Disallowed null characters in the type name. by Serhiy Storchaka · 8 years ago
  81. 1ed017a Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. by Serhiy Storchaka · 8 years ago
  82. f9253c9 Issue #22995: Instances of extension types with a state that aren't by Serhiy Storchaka · 8 years ago
  83. f81be8a Issue #22995: Instances of extension types with a state that aren't by Serhiy Storchaka · 8 years ago
  84. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  85. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 8 years ago
  86. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  87. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  88. 6a50e79 Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  89. 670d78a Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  90. d28bb62 Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  91. 12ab296 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  92. 609a2e1 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  93. d7a4415 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  94. 0d554d7 Issue #24164: Objects that need calling ``__new__`` with keyword arguments, by Serhiy Storchaka · 9 years ago
  95. 585a6ac Merge typo fixes from 3.5 by Martin Panter · 9 years ago
  96. 3f930dc Merge typo fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  97. 9955a37 Various minor typos in documentation and comments by Martin Panter · 9 years ago
  98. cdae2cb merge 3.5 (closes #24806) by Benjamin Peterson · 9 years ago
  99. 59dc696 merge 3.4 (#24806) by Benjamin Peterson · 9 years ago
  100. bd6c41a prevent unacceptable bases from becoming bases through multiple inheritance (#24806) by Benjamin Peterson · 9 years ago