1. eb1bc48 bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong type (GH-15838) by Miss Islington (bot) · 5 years ago
  2. 4bd1d05 Fix typos mostly in comments, docs and test names (GH-15209) by Miss Islington (bot) · 5 years ago
  3. c75f0e5 Fix an invalid assertEqual() call in test_descr.py (GH-15318) by Miss Islington (bot) · 5 years ago
  4. 988fff5 bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865) by Miss Islington (bot) · 5 years ago
  5. 05f1641 bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606) by Zackery Spytz · 5 years ago
  6. 62f9588 bpo-36026: make descr error message consistent (GH-11930) by Inada Naoki · 6 years ago
  7. 871309c bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556) by Inada Naoki · 6 years ago
  8. f2a1867 bpo-30040: new empty dict uses key-sharing dict (GH-1080) by Inada Naoki · 6 years ago
  9. ff3d39f bpo-36109: Fix random test_descr failure. (GH-12044) by Serhiy Storchaka · 6 years ago
  10. 5a30620 bpo-25750: Add test on bad descriptor __get__() (GH-9084) by jdemeyer · 6 years ago
  11. ac20e0f bpo-1617161: Make the hash and equality of methods not depending on the value of self. (GH-7848) by Serhiy Storchaka · 6 years ago
  12. d019bc8 bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995) by Oren Milman · 7 years ago
  13. 1f1a34c bpo-32379: Faster MRO computation for single inheritance (#4932) by Antoine Pitrou · 7 years ago
  14. 205e00c bpo-29914: Fix default implementations of __reduce__ and __reduce_ex__(). (#843) by Serhiy Storchaka · 8 years ago
  15. c393ee8 bpo-24329: allow __qualname__ and __classcell__ in __slots__ (GH-495) by Xiang Zhang · 8 years ago
  16. d908fd9 bpo-29695: Fixed tests after removing keyword args support in some basic type constructors. (GH-520) by Serhiy Storchaka · 8 years ago
  17. 386072e Merge from 3.6. by Serhiy Storchaka · 8 years ago
  18. 49010ee Revert changeset 1f31bf3f76f5 (issue5322) except tests. by Serhiy Storchaka · 8 years ago
  19. 5adfac2 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 8 years ago
  20. 0c78634 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 8 years ago
  21. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  22. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  23. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  24. ab078e9 Backed out changeset af29d89083b3 (closes #25548) (closes #27498) by Benjamin Peterson · 8 years ago
  25. 5801ecb Issue #25548: Showing memory address of class objects in repl by Kushal Das · 8 years ago
  26. 6ca4260 merge 3.5 by Benjamin Peterson · 8 years ago
  27. c352620 backout 3c9512d8ac0d by Benjamin Peterson · 8 years ago
  28. 1ce738e Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  29. f0564164 Fix typos in comments, documentation and test method names by Martin Panter · 8 years ago
  30. 2c02849 merge 3.5 (#25731) by Benjamin Peterson · 9 years ago
  31. 9ad1154 set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731) by Benjamin Peterson · 9 years ago
  32. 6a50e79 Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  33. 670d78a Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  34. d28bb62 Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  35. 20d15b5 Issue #24164: Fixed test_descr: __getnewargs_ex__ now is supported in protocols 2 and 3. by Serhiy Storchaka · 9 years ago
  36. 9c8213f No longer skip tests for classes with __getnewargs_ex__. The copy module by Serhiy Storchaka · 9 years ago
  37. 1ddbb8c Cleanup test_descr: remove C8 that is the same as C3. by Serhiy Storchaka · 9 years ago
  38. 1fdc80b Cleanup test_descr: remove C8 that is the same as C3. by Serhiy Storchaka · 9 years ago
  39. 59dc696 merge 3.4 (#24806) by Benjamin Peterson · 9 years ago
  40. bd6c41a prevent unacceptable bases from becoming bases through multiple inheritance (#24806) by Benjamin Peterson · 9 years ago
  41. 7d293ee Issue #24912: Prevent __class__ assignment to immutable built-in objects. by Guido van Rossum · 9 years ago
  42. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  43. eac503a Issue #24064: Property() docstrings are now writeable. (Patch by Berker Peksag.) by Raymond Hettinger · 9 years ago
  44. 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
  45. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  46. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  47. 6c62ac1 merge 3.4 (#22735) by Benjamin Peterson · 10 years ago
  48. 104b9e0 fix many custom mro() edge cases and improve code quality (#22735) by Benjamin Peterson · 10 years ago
  49. 9d4cbcc allow changing __class__ between a heaptype and non-heaptype in some cases (closes #22986) by Benjamin Peterson · 10 years ago
  50. 707b5cc Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX by Serhiy Storchaka · 10 years ago
  51. 48ad7c0 use __qualname__ to compute bound method repr (closes #21389) by Benjamin Peterson · 10 years ago
  52. 6315ffa Merge. by Charles-François Natali · 10 years ago
  53. af9eb96 Issue #21768: fix NameError in test_pydescr. Patch by Claudiu Popa. by Terry Jan Reedy · 10 years ago
  54. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
  55. 2a60534 move SharedKeyTests to test_descr by Benjamin Peterson · 11 years ago
  56. df81379 correct the fix for #20637; allow slot descriptor inheritance to take place before creating cached keys by Benjamin Peterson · 11 years ago
  57. 2626fab look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) by Benjamin Peterson · 11 years ago
  58. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  59. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  60. 7cd9fbe Fix whitespace by Antoine Pitrou · 11 years ago
  61. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  62. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  63. 898e976 Issue #19603: Use specific asserts in test_decr. by Serhiy Storchaka · 11 years ago
  64. 76edd21 Issue #19603: Use specific asserts in test_decr. by Serhiy Storchaka · 11 years ago
  65. 6b4f780 cleanup the construction of __qualname__ (closes #19301 again) by Benjamin Peterson · 11 years ago
  66. 3d9e481 give explicitly global functions and classes a global __qualname__ (closes #19301) by Benjamin Peterson · 11 years ago
  67. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  68. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  69. 7155759 remove pointless change by Benjamin Peterson · 11 years ago
  70. 214a7d2 properly lookup the __round__ special method (closes #17722) by Benjamin Peterson · 11 years ago
  71. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 11 years ago
  72. 2c05a2e do safety checks on __qualname__ assignment by Benjamin Peterson · 12 years ago
  73. 8afa7fa don't shadow the __qualname__ descriptor with __qualname__ in the class's __dict__ (closes #16271) by Benjamin Peterson · 12 years ago
  74. 8fbd295 merge 3.2 (#14699) by Benjamin Peterson · 12 years ago
  75. 7295c6a fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 12 years ago
  76. 42f5881 merge 3.2 (#14658) by Benjamin Peterson · 12 years ago
  77. 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 12 years ago
  78. 0db176f Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType by Victor Stinner · 12 years ago
  79. 1b1a8e7 correctly lookup __trunc__ in int() constructor by Benjamin Peterson · 13 years ago
  80. 96384b9 make extra arguments to object.__init__/__new__ to errors in most cases (finishes #1683368) by Benjamin Peterson · 13 years ago
  81. de39454 merge 3.2 (#14334) by Benjamin Peterson · 13 years ago
  82. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 13 years ago
  83. d74782b Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference to by Victor Stinner · 13 years ago
  84. 9a63386 merge 3.2 (#3787e896dbe9) by Benjamin Peterson · 13 years ago
  85. 52c4243 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 13 years ago
  86. 6f73874 Close #14095: type.__new__() doesn't remove __qualname__ key from the class by Victor Stinner · 13 years ago
  87. c425a94 Fix use of deprecated assert_ method. by Georg Brandl · 13 years ago
  88. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  89. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  90. b900d6a initialize __dict__ if needed by Benjamin Peterson · 13 years ago
  91. 01d7eba allow arbitrary attributes on classmethod and staticmethod (closes #14051) by Benjamin Peterson · 13 years ago
  92. 9d57481 Issue #13577: various kinds of descriptors now have a __qualname__ attribute. by Antoine Pitrou · 13 years ago
  93. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  94. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  95. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  96. 01fc6cd make __doc__ mutable on heaptypes (closes #12773) by Benjamin Peterson · 13 years ago
  97. af3dcd2 improve test name by Benjamin Peterson · 13 years ago
  98. c4085c8 complain when a class variable shadows a name in __slots__ (closes #12766) by Benjamin Peterson · 13 years ago
  99. 66d2be8 Issue 12647: Add __bool__() method to the None object. by Raymond Hettinger · 13 years ago
  100. 9b43b6e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago