summaryrefslogtreecommitdiffstats
path: root/Doc/reference/datamodel.rst
Commit message (Expand)AuthorAgeFilesLines
* bpo-14911: Corrected generator.throw() documentation (GH-32207)Miss Islington (bot)2022-03-311-1/+2
* bpo-46013: Fix confusing kerning on period in docs (GH-29989) (GH-32006)Miss Islington (bot)2022-03-201-1/+1
* Removed ambiguity in __init_subclass__ docs (GH-31540)Miss Islington (bot)2022-03-081-1/+1
* bpo-46076: Improve documentation for per-attribute docstrings with `__slots__...Miss Islington (bot)2021-12-191-3/+6
* [3.9] bpo-45840: Improve cross-references in the data model documentation (G...Alex Waygood2021-12-131-53/+75
* [doc] Clarify MRO precedence in descriptor super binding section (GH-29539) (...Miss Islington (bot)2021-12-111-1/+1
* [3.9] [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__``...Miss Islington (bot)2021-11-181-18/+146
* bpo-45583: Correct datamodel documentation of int() (GH-29182) (GH-29286)Miss Islington (bot)2021-10-281-2/+2
* [3.9] [docs] Improve the markup of powers (GH-28598) (GH-28608)Łukasz Langa2021-09-281-1/+1
* bpo-45104: Clarify when __init__ is called (GH-28210) (GH-28212)Miss Islington (bot)2021-09-071-1/+1
* bpo-42800: Add audit events for f_code and tb_frame (GH-24182)Steve Dower2021-05-031-0/+6
* Fix a typo in datamodel reference document (GH-24930)Miss Islington (bot)2021-04-251-1/+1
* [3.9] [doc] Fix a few margins due to bad markup (GH-23619). (GH-23859)Andre Delfino2020-12-221-1/+0
* bpo-6761: Enhance __call__ documentation (GH-7987)Miss Skeleton (bot)2020-10-271-1/+1
* bpo-41910: specify the default implementations of object.__eq__ and object.__...Miss Skeleton (bot)2020-10-221-6/+8
* Fix bpo-39416: Change "Numeric" to lower case; an english word, not a class n...Miss Skeleton (bot)2020-10-211-1/+1
* [3.9] bpo-39416: Document some restrictions on the default string representat...Miss Skeleton (bot)2020-10-211-0/+18
* bpo-41192: Add documentation of undocumented audit events (GH-22831)Miss Skeleton (bot)2020-10-201-0/+18
* bpo-41584: clarify when the reflected method of a binary arithemtic operator ...Miss Skeleton (bot)2020-10-051-7/+8
* [3.9] bpo-41688: Document bug in **= dispatching in the language data… (GH-...Ammar Askar2020-09-091-0/+7
* [3.9] bpo-40204: Allow pre-Sphinx 3 syntax in the doc (GH-21844) (GH-21901)Victor Stinner2020-08-191-2/+2
* Fix typo in object.__format__ docs (GH-19504)Heshy Roskes2020-04-261-1/+1
* fix comma location in various places (GH-19233)Mathieu Dupuy2020-03-301-1/+1
* bpo-39879: Update datamodel docs to include dict ordering (GH-19006)Lahfa Samy2020-03-261-0/+10
* bpo-17422: slightly more precise language (GH-18682)Caleb Donovick2020-03-061-1/+1
* bpo-35712: Make using NotImplemented in a boolean context issue a deprecation...MojoVampire2020-03-031-2/+7
* bpo-17422: Language reference should specify restrictions on class namespace ...ananthan-1232020-02-221-2/+4
* bpo-15243: Document __prepare__ as classmethod (GH-17124)alclarks2020-01-251-1/+2
* Fix the parameter list of object. _rpow_ (#GH-16477)HongWeipeng2020-01-051-1/+1
* bpo-38316: Fix co_stacksize documentation (GH-16983)Batuhan Taşkaya2019-12-151-2/+2
* bpo-38524: clarify example a bit and improve formatting (GH-17406)Tal Einat2019-11-281-5/+8
* bpo-38524: document implicit and explicit calling of descriptors' __set_name_...Florian Dahlitz2019-11-271-1/+12
* bpo-25866: Minor cleanups to "sequence" in docs (GH-17177)alclarks2019-11-171-5/+9
* bpo-38336: Remove the __set__ method restriction on data descriptors for attr...Géry Ogam2019-10-291-1/+1
* bpo-37913: Link to NotImplemented from new docs (GH-15860)Steve Dower2019-09-101-3/+3
* bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383)Jeroen Demeyer2019-09-101-2/+4
* bpo-36743: __get__ is sometimes called without the owner argument (#12992)Raymond Hettinger2019-08-291-7/+18
* bpo-15542: Documentation incorrectly suggests __init__ called after direct _...Joannah Nanjekye2019-08-261-4/+4
* bpo-29535: Remove promize about hash randomization of datetime objects. (GH-1...Serhiy Storchaka2019-08-241-2/+2
* bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)Serhiy Storchaka2019-06-011-5/+3
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-17/+19
* Use more PEP 570 syntax in the documentation. (GH-13720)Serhiy Storchaka2019-06-011-1/+1
* Update data model docs to include missing attributes for code objects (GH-13696)Pablo Galindo2019-05-311-12/+17
* bpo-36166: Change to rst datamodel file. (GH-13089)Catherine Alvarado2019-05-041-2/+2
* Improve grammar on async context managers and shorten text (GH-12379)Andre Delfino2019-05-031-4/+4
* Doc: Fixed missing punctuation in datamodel.rst (GH-12581)Jules Lasne (jlasne)2019-03-271-14/+14
* closes bpo-36188: Clean up 'unbound' method left-overs. (GH-12169)Martijn Pieters2019-03-051-6/+0
* Document other performance implication for __slots__ (GH-11974)Raymond Hettinger2019-02-211-0/+1
* bpo-35911: add cell constructor (GH-11771)Pierre Glaser2019-02-071-1/+3
* bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)Serhiy Storchaka2018-12-191-4/+4