summaryrefslogtreecommitdiffstats
path: root/Doc/reference
Commit message (Expand)AuthorAgeFilesLines
* bpo-46076: Improve documentation for per-attribute docstrings with `__slots__...Miss Islington (bot)2021-12-191-3/+6
* bpo-45840: Improve cross-references in the data model documentation (GH-29633...Alex Waygood2021-12-131-54/+76
* [doc] Clarify MRO precedence in descriptor super binding section (GH-29539) (...Miss Islington (bot)2021-12-111-1/+1
* bpo-45619: documentation of execution model: clarify and update binding summa...Miss Islington (bot)2021-11-261-9/+19
* [3.10] bpo-45250: fix docs regarding `__iter__` and iterators being inconsist...Brett Cannon2021-11-221-14/+12
* [3.10] [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`...Miss Islington (bot)2021-11-181-18/+146
* bpo-45640: [docs] Tokens are now clickable (GH-29260) (GH-29621)Miss Islington (bot)2021-11-183-53/+53
* bpo-45583: Correct datamodel documentation of int() (GH-29182) (GH-29285)Miss Islington (bot)2021-10-281-2/+2
* [3.10]bpo-45463: Clarify that global statements allows multiple names (GH-288...Miss Islington (bot)2021-10-161-4/+4
* [docs] lexical_analysis: Expand the text on ``_`` (GH-28903) (GH-28933)Miss Islington (bot)2021-10-131-4/+16
* Fix class pattern docs to refer to class patterns (GH-28849)Miss Islington (bot)2021-10-101-1/+1
* bpo-45346: Keep docs consistent regarding true and false values (GH-28697) (G...Miss Islington (bot)2021-10-021-4/+4
* [3.10] [docs] Improve the markup of powers (GH-28598) (GH-28607)Łukasz Langa2021-09-281-1/+1
* [3.10] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28511)Łukasz Langa2021-09-211-1/+1
* bpo-45198: __set_name__ documentation not clear about its usage with non-desc...Miss Islington (bot)2021-09-181-29/+34
* bpo-44964: Correct the note about the f_lasti field (GH-28208) (GH-28276)Miss Islington (bot)2021-09-101-3/+2
* bpo-45104: Clarify when __init__ is called (GH-28210)Miss Islington (bot)2021-09-071-1/+1
* bpo-44964: Add a note explaining the new semantics of f_last_i in frame objec...Miss Islington (bot)2021-09-071-2/+3
* bpo-45003: Change __div__ to __truediv__ in py3 language reference. (GH-27951...Miss Islington (bot)2021-08-261-1/+1
* bpo-39452: Rewrite and expand __main__.rst (GH-26883)Miss Islington (bot)2021-08-241-0/+2
* bpo-41911: Update docs for various expressions (GH-27470) (GH-27490)Miss Islington (bot)2021-07-301-7/+34
* [3.10] bpo-44589: raise a SyntaxError when mapping patterns have duplicate li...Miss Islington (bot)2021-07-151-4/+5
* Update doc as relative import can be used with star import (GH-25667) (GH-26121)Miss Islington (bot)2021-05-141-1/+1
* bpo-43977: Update pattern matching language reference docs (GH-25917) (GH-26117)Miss Islington (bot)2021-05-141-7/+35
* bpo-44025: Clarify when '_' is a keyword. (GH-25873)Miss Islington (bot)2021-05-041-2/+4
* bpo-43990: Fix the footnote ordering in the operator precedence docs (GH-25805)Zackery Spytz2021-05-021-3/+3
* 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
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-212-5/+12
* bpo-43837: Reverse order of precedence table to show tightly binding operator...Ammar Askar2021-04-191-29/+29
* Use double quotes over single quotes for match statement grammar (GH-24943)Ken Jin2021-04-121-2/+2
* bpo-43682: Make staticmethod objects callable (GH-25117)Victor Stinner2021-04-111-3/+2
* Fix description of behaviour of an exception class in 'from' clause (GH-24303)Mark Dickinson2021-04-111-4/+7
* bpo-39702: Remove dotted_name from decorator documentation (GH-25234)Saiyang Gou2021-04-081-1/+0
* bpo-36540: Improve doc of function definition regarding positional-only argum...Saiyang Gou2021-04-071-2/+8
* bpo-38605: Update "Future statements" docs since PEP 563 is always enabled (G...Saiyang Gou2021-04-071-5/+2
* bpo-43755: Update docs to reflect that lambda is not allowed in `comp_if` sin...Saiyang Gou2021-04-061-3/+1
* Update pattern matching docs for changes to the PEP (#25185)Ken Jin2021-04-062-3/+3
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-021-1/+2
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-301-0/+11
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-261-0/+7
* bpo-42128: Add documentation for pattern matching (PEP 634) (#24664)Daniel F Moisset2021-03-013-0/+650
* bpo-27646: Say that 'yield from' expression can be any iterable (GH-24595)Terry Jan Reedy2021-02-211-2/+2
* bpo-8264: Document hasattr and getattr behavior for private attributes (GH-23...Ken Jin2021-02-021-0/+2
* Document new parenthesized with statements (GH-24281)Pablo Galindo2021-01-251-1/+14
* bpo-35790: Correct the description of sys.exc_info() and add a code example (...Géry Ogam2020-12-211-3/+21
* bpo-42669: Document that `except` rejects nested tuples (GH-23822)Colin Watson2020-12-201-1/+2
* [doc] Mention with and except clauses in globals() (GH-13232)Andre Delfino2020-12-191-1/+1
* [doc] Fix a few margins due to bad markup (GH-23619)Andre Delfino2020-12-171-1/+0