1. df81379 correct the fix for #20637; allow slot descriptor inheritance to take place before creating cached keys by Benjamin Peterson · 10 years ago
  2. 056e265 Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ by Yury Selivanov · 10 years ago
  3. f0b5a7c Issue #20637: Key-sharing now also works for instance dictionaries of subclasses. Patch by Peter Ingebretson. by Antoine Pitrou · 11 years ago
  4. e686c5c look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) by Benjamin Peterson · 11 years ago
  5. 69a2547 Issue #20530: The signatures for slot builtins have been updated by Larry Hastings · 11 years ago
  6. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
  7. 1ea4e41 Issue #17162: Fix compilation, replace non-breaking space with an ASCII space by Victor Stinner · 11 years ago
  8. ca7b046 Issue #17162: Add PyType_GetSlot. by Martin v. Löwis · 11 years ago
  9. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  10. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  11. d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
  12. cc6e87b Issue #19088: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  13. 1a83070 Issue #19088: Fix incorrect caching of the copyreg module. by Alexandre Vassalotti · 11 years ago
  14. 2489bd8 Issue #17810: Fixed NULL check in _PyObject_GetItemsIter() by Christian Heimes · 11 years ago
  15. c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
  16. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
  17. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  18. e75fc14 Issue #19514: Deduplicate some _Py_IDENTIFIER declarations. by Martin v. Löwis · 11 years ago
  19. ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 11 years ago
  20. 3688aa9 Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use an by Victor Stinner · 11 years ago
  21. 84745ab Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses of a given type. by Antoine Pitrou · 11 years ago
  22. bebba50 fix indent by Victor Stinner · 11 years ago
  23. c13516b merge by Raymond Hettinger · 11 years ago
  24. 2ff2190 Issue #18594: Fix the fast path for collections.Counter(). by Raymond Hettinger · 11 years ago
  25. 33824f6 Restore changeset 5bd9db528aed (issue #18408) by Victor Stinner · 11 years ago
  26. 9154193 Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures. by Antoine Pitrou · 11 years ago
  27. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  28. de4d183 Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, newto, attr). by Christian Heimes · 11 years ago
  29. 8e47832 Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an by Victor Stinner · 11 years ago
  30. 5967bf4 Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failure by Victor Stinner · 11 years ago
  31. 3997cfd Cleanup type_call() to ease debug by Victor Stinner · 11 years ago
  32. 53510cd Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryError by Victor Stinner · 11 years ago
  33. a41f085 Issue #18408: pmerge() help of mro_implementation() now raises MemoryError on by Victor Stinner · 11 years ago
  34. 2e8474d Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on error by Victor Stinner · 11 years ago
  35. 54e4ca7 typeobject.c: remove trailing spaces by Victor Stinner · 11 years ago
  36. 9812af8 Issue #18408: Fix PyType_Ready() and type.__bases__ setter to handle by Victor Stinner · 11 years ago
  37. e1b4cbc when arguments are cells clear the locals slot (backport of #17927) by Benjamin Peterson · 11 years ago
  38. 159ae41 when an argument is a cell, set the local copy to NULL (see #17927) by Benjamin Peterson · 11 years ago
  39. 6832c81 #17927: Keep frame from referencing cell-ified arguments. by Guido van Rossum · 11 years ago
  40. df6931d Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  41. 957a23b Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  42. 548677b Issue #16447: Merge fix from 3.3. by Mark Dickinson · 11 years ago
  43. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 11 years ago
  44. d3f41fe merge 3.3 (#17610) by Benjamin Peterson · 11 years ago
  45. 6395241 list slotdefs in offset order rather than sorting them (closes #17610) by Benjamin Peterson · 11 years ago
  46. aaf16b9 Merge: #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  47. 702a5dc #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  48. 6b30759 #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  49. 3ba3a3e Issue #15422: get rid of PyCFunction_New macro by Andrew Svetlov · 12 years ago
  50. 2cd8ce4 Issue #9856: Replace deprecation warinigs to raising TypeError in object.__format__ by Andrew Svetlov · 12 years ago
  51. 3cb9024 merge 3.3 by Benjamin Peterson · 12 years ago
  52. 2c05a2e do safety checks on __qualname__ assignment by Benjamin Peterson · 12 years ago
  53. 8afa7fa don't shadow the __qualname__ descriptor with __qualname__ in the class's __dict__ (closes #16271) by Benjamin Peterson · 12 years ago
  54. 4ca1cf3 Issue #16086: PyTypeObject.tp_flags and PyType_Spec.flags are now unsigned by Victor Stinner · 12 years ago
  55. da064d0 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
  56. ab02db2 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
  57. 76c0829 Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_qualname returns NULL. CID 715371 by Christian Heimes · 12 years ago
  58. e81dc29 Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371 by Christian Heimes · 12 years ago
  59. 4556579 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
  60. a0e7e41 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
  61. 5b4faae Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  62. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  63. 6a42bd6 Make super() internal errors RuntimeError instead of SystemError (closes #15839) by Benjamin Peterson · 12 years ago
  64. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  65. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  66. 66a3a7e Try to fix crash on x86 OpenIndiana buildbot. by Antoine Pitrou · 12 years ago
  67. 1351ca6 Replace assert() with a more informative fatal error. by Antoine Pitrou · 12 years ago
  68. bb78f57 Use struct member (ht_type) instead of casting pointers. by Antoine Pitrou · 12 years ago
  69. 9c56409 Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. by Martin v. Löwis · 12 years ago
  70. 99cc629 Issue #15142: Fix reference leak when deallocating instances of types created using PyType_FromSpec(). by Antoine Pitrou · 12 years ago
  71. a4db02c Issue #15142: Fix reference leak when deallocating instances of types created using PyType_FromSpec(). by Antoine Pitrou · 12 years ago
  72. 0b43bcf Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue by Nick Coghlan · 12 years ago
  73. 1b634c2 Use size_t, not ssize_t (issue #14801). by Antoine Pitrou · 12 years ago
  74. a1433fe Remove tab characters by Antoine Pitrou · 12 years ago
  75. 682d94c Use size_t, not ssize_t (issue #14801). by Antoine Pitrou · 12 years ago
  76. 1cffbac merge 3.2 (#14752) by Benjamin Peterson · 12 years ago
  77. 89a6e9a fix possible refleak (closes #14752) by Benjamin Peterson · 12 years ago
  78. 64acccf decref cached keys on type deallocation (#13903) by Benjamin Peterson · 12 years ago
  79. 4f2f3b6 Account for shared keys in type's __sizeof__ (#13903). by Martin v. Loewis · 12 years ago
  80. 42f5881 merge 3.2 (#14658) by Benjamin Peterson · 12 years ago
  81. 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 12 years ago
  82. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  83. 9ee601e merge 3.2 by Benjamin Peterson · 12 years ago
  84. b6af60c adjust formatting by Benjamin Peterson · 12 years ago
  85. 3471bb6 remove extraneous condition by Benjamin Peterson · 12 years ago
  86. ab3c1c1 be consistent with rest of function by Benjamin Peterson · 12 years ago
  87. 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 12 years ago
  88. 96384b9 make extra arguments to object.__init__/__new__ to errors in most cases (finishes #1683368) by Benjamin Peterson · 12 years ago
  89. 9a03ecf simply this slightly by Benjamin Peterson · 12 years ago
  90. de39454 merge 3.2 (#14334) by Benjamin Peterson · 12 years ago
  91. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 12 years ago
  92. d74782b Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference to by Victor Stinner · 12 years ago
  93. 9a63386 merge 3.2 (#3787e896dbe9) by Benjamin Peterson · 12 years ago
  94. 52c4243 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 12 years ago
  95. 6f73874 Close #14095: type.__new__() doesn't remove __qualname__ key from the class by Victor Stinner · 13 years ago
  96. 006c5a2 check for NULL to fix segfault by Benjamin Peterson · 13 years ago
  97. 8eb1269 add generic implementation of a __dict__ descriptor for C types by Benjamin Peterson · 13 years ago
  98. 2372bb0 merge 3.2 (closes #13908) by Benjamin Peterson · 13 years ago
  99. 2652d25 ready types returned from PyType_FromSpec by Benjamin Peterson · 13 years ago
  100. e28108c adjust declaration by Benjamin Peterson · 13 years ago