1. 1bddf89 bpo-38524: document implicit and explicit calling of descriptors' __set_name__ (GH-17364) by Florian Dahlitz · 6 years ago
  2. 4544e78 bpo-25866: Minor cleanups to "sequence" in docs (GH-17177) by alclarks · 6 years ago
  3. 4c155f7 bpo-38336: Remove the __set__ method restriction on data descriptors for attribute lookup precedence (GH-16520) by Géry Ogam · 6 years ago
  4. a39a4c7 bpo-37913: Link to NotImplemented from new docs (GH-15860) by Steve Dower · 6 years ago
  5. 009ef29 bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383) by Jeroen Demeyer · 6 years ago
  6. 0dac68f bpo-36743: __get__ is sometimes called without the owner argument (#12992) by Raymond Hettinger · 6 years ago
  7. 6b16d93 bpo-15542: Documentation incorrectly suggests __init__ called after direct __new__ call (GH-15478) by Joannah Nanjekye · 6 years ago
  8. e9c90aa bpo-29535: Remove promize about hash randomization of datetime objects. (GH-15269) by Serhiy Storchaka · 6 years ago
  9. bdbad71 bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108) by Serhiy Storchaka · 6 years ago
  10. cd74e66 bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726) by Pablo Galindo · 6 years ago
  11. 70c5f2a Use more PEP 570 syntax in the documentation. (GH-13720) by Serhiy Storchaka · 6 years ago
  12. ed222a7 Update data model docs to include missing attributes for code objects (GH-13696) by Pablo Galindo · 6 years ago
  13. 5e98f05 bpo-36166: Change to rst datamodel file. (GH-13089) by Catherine Alvarado · 6 years ago
  14. a8a79ca Improve grammar on async context managers and shorten text (GH-12379) by Andre Delfino · 6 years ago
  15. 1fc5bf2 Doc: Fixed missing punctuation in datamodel.rst (GH-12581) by Jules Lasne (jlasne) · 6 years ago
  16. b727239 closes bpo-36188: Clean up 'unbound' method left-overs. (GH-12169) by Martijn Pieters · 6 years ago
  17. 7463884 Document other performance implication for __slots__ (GH-11974) by Raymond Hettinger · 6 years ago
  18. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 7 years ago
  19. 2b57c43 bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174) by Serhiy Storchaka · 7 years ago
  20. 1ce853f Move __missing__ after __delitem__ in Data model. (GH-10923) by Andre Delfino · 7 years ago
  21. a48e0eb Fix outdated info in datamodel about dicts (GH-9807) by wim glenn · 7 years ago
  22. c2ccac7 bpo-33816: Remove outdated metaclass example (GH-7566) by Andrés Delfino · 7 years ago
  23. 0bee3c3 bpo-35119: Fix RecursionError in example of customizing module attribute access. (GH-10323) by Denis Osipov · 7 years ago
  24. 913876d bpo-35054: Add yet more index entries for symbols. (GH-10121) by Serhiy Storchaka · 7 years ago
  25. ddb961d bpo-35054: Add more index entries for symbols. (GH-10064) by Serhiy Storchaka · 7 years ago
  26. 3c1b590 Fix HTML formatting in datamodel.rst (GH-8693) by Berker Peksag · 7 years ago
  27. 00818c8 Fix typo in datamodel.rst (GH-6964) by Zach Mitchell · 7 years ago
  28. f5e7b19 bpo-23722: Raise a RuntimeError for absent __classcell__. (GH-6931) by Serhiy Storchaka · 7 years ago
  29. 8ae8e6a bpo-23722: Fix docs for future __classcell__ changes. (GH-6999) by Serhiy Storchaka · 7 years ago
  30. bd5f965 bpo-32717: Document PEP 560 (GH-6726) by Ivan Levkivskyi · 7 years ago
  31. 496431f bpo-26701: Improve documentation for the rounding special methods. (#6054) by Serhiy Storchaka · 7 years ago
  32. 308eab9 bpo-26701: Add documentation for __trunc__ (GH-6022) by Eric Appelt · 7 years ago
  33. aec7532 bpo-30579: Docs for dynamic traceback creation (GH-5653) by Nick Coghlan · 7 years ago
  34. d1f3181 bpo-8722: Document __getattr__ behavior with AttributeError in property (GH-4754) by Cheryl Sabella · 8 years ago
  35. 85527cf bpo-27505: Add change notes in module attribute docs (GH-5320) by Cheryl Sabella · 8 years ago
  36. 4b96593 bpo-32377: improve __del__ docs and fix mention about resurrection (#4927) by Antoine Pitrou · 8 years ago
  37. 5364b5c bpo-32225: Implementation of PEP 562 (#4731) by Ivan Levkivskyi · 8 years ago
  38. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 8 years ago
  39. b8d1b9d Mention enum as an ex (#2982) by Louie Lu · 8 years ago
  40. 5a85167 bpo-31344: Per-frame control of trace events (GH-3417) by Nick Coghlan · 8 years ago
  41. 64505a1 bpo-30486: Allow setting cell value (#1840) by Lisa Roach · 8 years ago
  42. 2b44e30 bpo-30449 Terse slots (#1819) by Aaron Hall, MBA · 8 years ago
  43. 12b1c18 bpo-30354: Update data model documentation for super() (GH-1561) by csabella · 8 years ago
  44. 7e19dbc bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506) by Serhiy Storchaka · 8 years ago
  45. 2e62469 bpo-29679: Implement @contextlib.asynccontextmanager (#360) by Jelle Zijlstra · 8 years ago
  46. c6db481 bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271) by csabella · 8 years ago
  47. 2e576f5 bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) by Serhiy Storchaka · 8 years ago
  48. 85157cd bpo-15718: Document the upper bound constrain on the __len__ return value. (#1256) by Serhiy Storchaka · 8 years ago
  49. 406c252 Issue #29012: Merge from 3.5 by Berker Peksag · 9 years ago
  50. 7b4e551 Issue #29012: Remove another outdated information by Berker Peksag · 9 years ago
  51. a22457e Issue #29012: Merge from 3.5 by Berker Peksag · 9 years ago
  52. 14adafd Issue #29012: Remove outdated information about __bases__ by Berker Peksag · 9 years ago
  53. 01e4c11 Merge 3.5 by Victor Stinner · 9 years ago
  54. 509476b doc: Suggest to hash(tuple of attr) rather than XOR by Victor Stinner · 9 years ago
  55. 0366004 Issue #28091: Document PEP 525 & PEP 530. by Yury Selivanov · 9 years ago
  56. 19d2467 Issue #23722: improve __classcell__ compatibility by Nick Coghlan · 9 years ago
  57. 2854018 Another en → em dash fix for 3.6 by Martin Panter · 9 years ago
  58. 989db5c Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 9 years ago
  59. ecf41da Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 9 years ago
  60. 68f4dd8 Doc updates for PEPs 520 and 468. by Eric Snow · 9 years ago
  61. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 9 years ago
  62. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 9 years ago
  63. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 9 years ago
  64. f74c33a Merge by Raymond Hettinger · 9 years ago
  65. 7ea386e Issue 19504: Change "customise" to "customize" American spelling. by Raymond Hettinger · 9 years ago
  66. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 9 years ago
  67. 607e1c4 Issue 27366: PEP 487 docs updates by Nick Coghlan · 9 years ago
  68. 01d1719 Issue #27366: Tweak PEP 487 documentation by Berker Peksag · 9 years ago
  69. d78448e Issue #27366: Implement PEP 487 by Nick Coghlan · 9 years ago
  70. 2fec611 Issue #24314: Merge doc links from 3.5 by Martin Panter · 9 years ago
  71. bae5d81 Issue #24314: Fix doc links for general attributes like __name__, __dict__ by Martin Panter · 9 years ago
  72. 5848ac2 Issue #15476: Merge index entries from 3.5 by Martin Panter · 9 years ago
  73. 711d25d Merge 3.5 (issue #27243) by Yury Selivanov · 9 years ago
  74. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 9 years ago
  75. 3bad04c Merge: #26829: Clarify that namespace is copied to a new __dict__ in instance creation. by R David Murray · 9 years ago
  76. dd4fcf5 #26829: Clarify that namespace is copied to a new __dict__ in instance creation. by R David Murray · 9 years ago
  77. e9b8403 [Issue 15476] Make "code object" its own entry in the index by Tommy Beadle · 9 years ago
  78. c499f30 Issue #23921: Standardized documentation whitespace formatting. by Serhiy Storchaka · 9 years ago
  79. dba9039 Issue #23921: Standardized documentation whitespace formatting. by Serhiy Storchaka · 9 years ago
  80. 7b1e5a7 Remove redundant leading zeroes in PEP references. by Serhiy Storchaka · 9 years ago
  81. e4ba872 Remove redundant leading zeroes in PEP references. by Serhiy Storchaka · 9 years ago
  82. 3e48b38 Merge 3.5 (issue #25887) by Yury Selivanov · 9 years ago
  83. 77c9681 Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once. by Yury Selivanov · 9 years ago
  84. bc1ee46 Issue #25179: Documentation for formatted string literals aka f-strings by Martin Panter · 10 years ago
  85. d2ad571 Issue #25523: Further a-to-an corrections new in 3.5 by Martin Panter · 10 years ago
  86. 85d5d90 Issue #25418: Fix markup in object.__hash__ documentation by Berker Peksag · 10 years ago
  87. edb9111 Issue #25418: Fix markup in object.__hash__ documentation by Berker Peksag · 10 years ago
  88. 84835ab Issue #25161: Merge full stops from 3.4 into 3.5 by Martin Panter · 10 years ago
  89. d21e0b5 Issue #25161: Add full stops in documentation; patch by Takase Arihiro by Martin Panter · 10 years ago
  90. d84b29f Issue #4395: Better testing and documentation of binary operators. by Robert Collins · 10 years ago
  91. 00cf3c3 Issue #4395: Better testing and documentation of binary operators. by Robert Collins · 10 years ago
  92. 66f8828 Issue #24439: Improve PEP 492 related docs. by Yury Selivanov · 10 years ago
  93. f3e40fa Issue 24180: Documentation for PEP 492 changes. by Yury Selivanov · 10 years ago
  94. 770319d Issue #23912: Fix code formatting in datamodel.rst. by Berker Peksag · 10 years ago
  95. 2995cc6 Issue #23912: Fix code formatting in datamodel.rst. by Berker Peksag · 10 years ago
  96. 9fdb0fe Issue20467: clarify __init__'s role by Ethan Furman · 11 years ago
  97. 845d33c Issue20467: clarify __init__'s role by Ethan Furman · 11 years ago
  98. 119479f Issue20467: clarify __init__'s role by Ethan Furman · 11 years ago
  99. b67f6e2 Issue #23006: Improve the documentation and indexing of dict.__missing__. by Terry Jan Reedy · 11 years ago
  100. c9f5f2d #22918: Drop obsolete mention of 'keys' in datamodel __iter__ docs. by R David Murray · 11 years ago