1. 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
  2. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  3. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  4. 6c62ac1 merge 3.4 (#22735) by Benjamin Peterson · 10 years ago
  5. 104b9e0 fix many custom mro() edge cases and improve code quality (#22735) by Benjamin Peterson · 10 years ago
  6. 9d4cbcc allow changing __class__ between a heaptype and non-heaptype in some cases (closes #22986) by Benjamin Peterson · 10 years ago
  7. 707b5cc Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX by Serhiy Storchaka · 10 years ago
  8. 48ad7c0 use __qualname__ to compute bound method repr (closes #21389) by Benjamin Peterson · 10 years ago
  9. 6315ffa Merge. by Charles-François Natali · 10 years ago
  10. af9eb96 Issue #21768: fix NameError in test_pydescr. Patch by Claudiu Popa. by Terry Jan Reedy · 10 years ago
  11. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  12. 2a60534 move SharedKeyTests to test_descr by Benjamin Peterson · 10 years ago
  13. df81379 correct the fix for #20637; allow slot descriptor inheritance to take place before creating cached keys by Benjamin Peterson · 10 years ago
  14. 2626fab look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) by Benjamin Peterson · 11 years ago
  15. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  16. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  17. 7cd9fbe Fix whitespace by Antoine Pitrou · 11 years ago
  18. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  19. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  20. 898e976 Issue #19603: Use specific asserts in test_decr. by Serhiy Storchaka · 11 years ago
  21. 76edd21 Issue #19603: Use specific asserts in test_decr. by Serhiy Storchaka · 11 years ago
  22. 6b4f780 cleanup the construction of __qualname__ (closes #19301 again) by Benjamin Peterson · 11 years ago
  23. 3d9e481 give explicitly global functions and classes a global __qualname__ (closes #19301) by Benjamin Peterson · 11 years ago
  24. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  25. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  26. 7155759 remove pointless change by Benjamin Peterson · 11 years ago
  27. 214a7d2 properly lookup the __round__ special method (closes #17722) by Benjamin Peterson · 11 years ago
  28. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 11 years ago
  29. 2c05a2e do safety checks on __qualname__ assignment by Benjamin Peterson · 12 years ago
  30. 8afa7fa don't shadow the __qualname__ descriptor with __qualname__ in the class's __dict__ (closes #16271) by Benjamin Peterson · 12 years ago
  31. 8fbd295 merge 3.2 (#14699) by Benjamin Peterson · 12 years ago
  32. 7295c6a fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 12 years ago
  33. 42f5881 merge 3.2 (#14658) by Benjamin Peterson · 12 years ago
  34. 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 12 years ago
  35. 0db176f Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType by Victor Stinner · 12 years ago
  36. 1b1a8e7 correctly lookup __trunc__ in int() constructor by Benjamin Peterson · 12 years ago
  37. 96384b9 make extra arguments to object.__init__/__new__ to errors in most cases (finishes #1683368) by Benjamin Peterson · 12 years ago
  38. de39454 merge 3.2 (#14334) by Benjamin Peterson · 12 years ago
  39. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 12 years ago
  40. d74782b Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference to by Victor Stinner · 12 years ago
  41. 9a63386 merge 3.2 (#3787e896dbe9) by Benjamin Peterson · 12 years ago
  42. 52c4243 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 12 years ago
  43. 6f73874 Close #14095: type.__new__() doesn't remove __qualname__ key from the class by Victor Stinner · 13 years ago
  44. c425a94 Fix use of deprecated assert_ method. by Georg Brandl · 13 years ago
  45. 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
  46. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  47. b900d6a initialize __dict__ if needed by Benjamin Peterson · 13 years ago
  48. 01d7eba allow arbitrary attributes on classmethod and staticmethod (closes #14051) by Benjamin Peterson · 13 years ago
  49. 9d57481 Issue #13577: various kinds of descriptors now have a __qualname__ attribute. by Antoine Pitrou · 13 years ago
  50. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  51. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  52. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  53. 01fc6cd make __doc__ mutable on heaptypes (closes #12773) by Benjamin Peterson · 13 years ago
  54. af3dcd2 improve test name by Benjamin Peterson · 13 years ago
  55. c4085c8 complain when a class variable shadows a name in __slots__ (closes #12766) by Benjamin Peterson · 13 years ago
  56. 66d2be8 Issue 12647: Add __bool__() method to the None object. by Raymond Hettinger · 13 years ago
  57. 9b43b6e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
  58. ff35050 Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
  59. 8cdc40e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
  60. b45c708 excellent place for assertRaises by Benjamin Peterson · 13 years ago
  61. 5cc10b0 merge 3.2 by Benjamin Peterson · 13 years ago
  62. f5fcd33 merge 3.1 by Benjamin Peterson · 13 years ago
  63. 7963a35 correctly lookup __dir__ by Benjamin Peterson · 13 years ago
  64. 6a534e7 (Merge 3.2) Issue #9756: When calling a method descriptor or a slot wrapper by Victor Stinner · 13 years ago
  65. d956131 (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper by Victor Stinner · 13 years ago
  66. 3249dec Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the by Victor Stinner · 13 years ago
  67. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  68. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  69. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  70. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  71. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  72. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  73. 7a54073 Issue #10992: make tests pass when run under coverage. by Brett Cannon · 14 years ago
  74. de36871 Merged revisions 87952-87954 via svnmerge from by Benjamin Peterson · 14 years ago
  75. 477ba91 don't segfault on deleting __abstractmethods__ #10892 by Benjamin Peterson · 14 years ago
  76. 5e8dada oops, wrong class by Benjamin Peterson · 14 years ago
  77. 1c02a44 move this test to test_descr; it's not abc specific by Benjamin Peterson · 14 years ago
  78. 9d254f7 Merged revisions 87368 via svnmerge from by Ezio Melotti · 14 years ago
  79. ac53ab6 #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Urban. by Ezio Melotti · 14 years ago
  80. 0eb7f86 return views from dict proxy items/values/keys #10630 by Benjamin Peterson · 14 years ago
  81. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  82. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  83. a67c70d Merged revisions 84984 via svnmerge from by Mark Dickinson · 14 years ago
  84. b09a3d6 Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r; by Mark Dickinson · 14 years ago
  85. f751bc9 fix lookup of __ceil__ by Benjamin Peterson · 14 years ago
  86. 8bb9cde correctly lookup __trunc__ and __floor__ by Benjamin Peterson · 14 years ago
  87. da2cf04 Merged revisions 81706-81707 via svnmerge from by Benjamin Peterson · 14 years ago
  88. 41fe615 (partially) by Florent Xicluna · 14 years ago
  89. 21896a3 Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,78331-78332,78336,78339,78343,78378-78379,78415,78559,78717,78791 via svnmerge from by Benjamin Peterson · 14 years ago
  90. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  91. 378c0cf Merged revisions 78351 via svnmerge from by R. David Murray · 15 years ago
  92. 23b9ef7 Merged revisions 77937 via svnmerge from by Benjamin Peterson · 15 years ago
  93. 5e55b3e Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,77739,77858,77887,77889 via svnmerge from by Benjamin Peterson · 15 years ago
  94. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 15 years ago
  95. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  96. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  97. aea4428 Merged revisions 77292-77293 via svnmerge from by Benjamin Peterson · 15 years ago
  98. 533849a Merged revisions 77161 via svnmerge from by Benjamin Peterson · 15 years ago
  99. d12362a Merged revisions 77157 via svnmerge from by Benjamin Peterson · 15 years ago
  100. 5c2db37 Issue #7435: Remove duplicate int/long tests, and other by Mark Dickinson · 15 years ago