summaryrefslogtreecommitdiffstats
path: root/Doc/reference/datamodel.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.12] Docs: Resolve Sphinx warnings in dis.rst (GH-108476) (#108546)Miss Islington (bot)2023-08-271-1/+3
* [3.12] Docs: Datamodel: Merge "Notes on using __slots__" with the parent sect...Miss Islington (bot)2023-08-251-2/+1
* [3.12] Datamodel: Add headings to the standard type hierarchy (GH-108146) (#1...Miss Islington (bot)2023-08-251-1000/+1104
* [3.12] gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386) (G...Serhiy Storchaka2023-07-291-4/+4
* [3.12] gh-106892: Use roles :data: and :const: for referencing module variabl...Serhiy Storchaka2023-07-211-2/+2
* [3.12] gh-103921: Document PEP 695 (GH-104642) (#104989)Miss Islington (bot)2023-05-261-0/+12
* GH-97950: Use new-style index directive ('builtin') (#104164)Adam Turner2023-05-061-25/+25
* gh-102500: Document PEP 688 (#102571)Jelle Zijlstra2023-05-041-0/+41
* GH-97950: Use new-style index directive ('statement') (#104162)Adam Turner2023-05-041-4/+4
* GH-97950: Use new-style index directive ('object') (#104158)Adam Turner2023-05-041-44/+44
* GH-97950: Use new-style index directive ('module') (#103996)Adam Turner2023-05-041-4/+4
* GH-103484: Fix redirected permanently URLs (#104001)Rafael Fontenelle2023-05-021-1/+1
* gh-101688: Implement types.get_original_bases (#101827)James Hilton-Balfe2023-04-231-0/+4
* gh-103373: `__mro_entries__` docs: improve cross references (#103398)Alex Waygood2023-04-111-5/+10
* gh-103373: Improve documentation for `__mro_entries__` (#103374)Alex Waygood2023-04-081-5/+9
* gh-101865: Deprecate `co_lnotab` from code objects as per PEP 626 (#101866)Nikita Sobolev2023-04-031-1/+2
* gh-100315: clarification to `__slots__` docs. (#102621)T2023-03-141-2/+4
* gh-102011: use sys.exception() instead of sys.exc_info() in docs where possib...Irit Katriel2023-02-201-0/+1
* GH-101898: Fix missing term references for hashable definition (#101899)Furkan Onder2023-02-141-1/+1
* GH-85979: Clarify specification of `object.__await__` (#22320)Paolo Lammens2022-12-311-0/+8
* Fix typo in `__match_args__` doc (#99785)Terry Jan Reedy2022-11-261-1/+1
* docs: Change links to label refs (#98454)Stanley2022-10-261-0/+2
* gh-93738: Documentation C syntax (:c:type:<C type> -> :c:expr:<C type>) (#97768)Adam Turner2022-10-051-1/+1
* gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...Ofey Chan2022-09-301-0/+5
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH...Ned Batchelder2022-07-051-2/+2
* bpo-14911: Corrected generator.throw() documentation (GH-32207)Dave Goncalves2022-03-311-1/+2
* bpo-46013: Fix confusing kerning on period in docs (GH-29989)jmcb2022-03-201-1/+1
* Removed ambiguity in __init_subclass__ docs (GH-31540)David Gilbertson2022-03-081-1/+1
* bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)Zackery Spytz2022-02-031-0/+3
* bpo-46076: Improve documentation for per-attribute docstrings with `__slots__...Alex Waygood2021-12-191-3/+6
* Fix some false positives of documentation syntax problemsPablo Galindo2021-12-081-1/+1
* bpo-20751: Match variable name to the example. (GH-29980)Raymond Hettinger2021-12-081-4/+8
* bpo-45840: Improve cross-references in the data model documentation (GH-29633)Alex Waygood2021-12-051-54/+76
* bpo-20751: Replace method example with attribute example, matching the descr...Raymond Hettinger2021-12-041-4/+32
* [doc] Clarify MRO precedence in descriptor super binding section (GH-29539)Jouke Witteveen2021-11-201-1/+1
* bpo-45250: fix docs regarding `__iter__` and iterators being inconsistently r...Brett Cannon2021-11-201-14/+12
* [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`` in th...Alex Waygood2021-11-181-18/+146
* bpo-45583: Correct datamodel documentation of int() (GH-29182)Arthur Milchior2021-10-281-2/+2
* [docs] Improve the markup of powers (GH-28598)Serhiy Storchaka2021-09-281-1/+1
* bpo-45198: __set_name__ documentation not clear about its usage with non-desc...Raymond Hettinger2021-09-181-29/+34
* bpo-44964: Correct the note about the f_lasti field (GH-28208)Pablo Galindo Salgado2021-09-101-3/+2
* bpo-45104: Clarify when __init__ is called (GH-28210)Raymond Hettinger2021-09-071-1/+1
* bpo-44964: Add a note explaining the new semantics of f_last_i in frame objec...Pablo Galindo Salgado2021-09-071-2/+3
* bpo-41706: Fix special method invocation docs to mention using type() (GH-22084)William Chargin2021-08-041-3/+4
* bpo-43950: Add documentation for PEP-657 (GH-27047)Ammar Askar2021-07-131-0/+33
* bpo-44530: Document the new CodeObject.co_qualname attribute (GH-27052)Pablo Galindo2021-07-071-0/+2
* bpo-43216: Remove @asyncio.coroutine (GH-26369)Illia Volochii2021-07-011-1/+1
* bpo-43987: Add "Annotations Best Practices" HOWTO doc. (#25746)larryhastings2021-05-021-19/+51
* bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman2021-04-291-0/+6
* Fix a typo in datamodel reference document (GH-24930)Géry Ogam2021-04-251-1/+1