summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* [doc] Fix typo in asyncio-eventloop documentation (GH-22311) (GH-26256)Miss Islington (bot)2021-05-191-2/+2
* bpo-40975: [doc] Identify AsyncExitStack.enter_async_context()/aclose() as co...Miss Islington (bot)2021-05-191-2/+2
* bpo-44010: IDLE: colorize pattern-matching soft keywords (GH-25851)Miss Islington (bot)2021-05-192-0/+12
* bpo-35765: Clarify references to "object x" in the JSON tutorial (GH-22411) (...Miss Islington (bot)2021-05-191-1/+2
* bpo-44106: Purge unused sqlite3 doc includes (GH-26234)Miss Islington (bot)2021-05-198-138/+0
* bpo-44106: Improve sqlite3 example database contents (GH-26027)Miss Islington (bot)2021-05-199-42/+37
* bpo-30593: Doc'ed that executescript() disregards isolation level (GH-26220)Miss Islington (bot)2021-05-191-1/+5
* [3.10] bpo-41963: document that ConfigParser strips off comments (GH-26197) (...Ɓukasz Langa2021-05-181-0/+7
* Apply edits from Allen Downey's review of the linear_regression docs. (GH-261...Miss Islington (bot)2021-05-171-17/+9
* [doc] Fix typo in os module (GH-24464)Miss Islington (bot)2021-05-161-1/+1
* bpo-32133: Improve numbers docs (GH-26124) (GH-26149)Miss Islington (bot)2021-05-151-1/+1
* bpo-44139: Use a more descriptive syntax error comprehension case in the What...Miss Islington (bot)2021-05-151-2/+2
* bpo-44072: fix Complex, Integral docs for `**` (GH-25986)Miss Islington (bot)2021-05-141-4/+5
* bpo-43729: Clarify comment in tutorial example (GH-25191) (#26136)Miss Islington (bot)2021-05-141-1/+1
* Subprocess Protocols Documentation (GH-20950) (GH-26133)Miss Islington (bot)2021-05-141-1/+1
* [3.10] [doc] Fix typos in cgi.rst (GH-24766) (GH-26132)Irit Katriel2021-05-141-4/+4
* Update doc as relative import can be used with star import (GH-25667) (GH-26121)Miss Islington (bot)2021-05-141-1/+1
* Reword paragraph on specific value for Py_LIMITED_API (GH-26101) (GH-26123)Miss Islington (bot)2021-05-141-12/+12
* Updated code example for asyncio.gather (GH-20604) (GH-26119)Miss Islington (bot)2021-05-141-8/+11
* bpo-43977: Update pattern matching language reference docs (GH-25917) (GH-26117)Miss Islington (bot)2021-05-142-8/+36
* bpo-43795: PEP 652 user documentation (GH-25668) (GH-26034)Miss Islington (bot)2021-05-145-1038/+1156
* bpo-43757: Document os.path.realpath(strict=True) in 3.10 whatsnew. (GH-26090...Miss Islington (bot)2021-05-141-0/+8
* [3.10] bpo-43908: Add What's New entry for Py_TPFLAGS_IMMUTABLETYPE flag (GH-...Miss Islington (bot)2021-05-131-0/+10
* bpo-39906: Document new follow_symlinks argument to pathlib.Path.stat() and c...Miss Islington (bot)2021-05-131-0/+5
* bpo-44030: Fix formatting error in exceptions docs (GH-25929) (GH-26086)Miss Islington (bot)2021-05-131-1/+1
* bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26057)Miss Islington (bot)2021-05-121-0/+1
* Correct the changelog entry for the syntax error message for multiple excepti...Miss Islington (bot)2021-05-111-1/+1
* bpo-10548: expectedFailure does not apply to fixtures (GH-23201) (#26044)Miss Islington (bot)2021-05-111-2/+3
* bpo-23750: Document os-system, subprocess. Patch by Martin Panter. (GH-26016)...Miss Islington (bot)2021-05-112-5/+11
* bpo-25821: Fix inaccuracy in threading.enumerate/is_alive documentation (GH-2...Miss Islington (bot)2021-05-111-4/+5
* Doc: http.server: directory is not a class attribute, but an argument. (GH-26...Miss Islington (bot)2021-05-111-8/+8
* bpo-43558: Add note about base class initialization to dataclasses doc (GH-25...Miss Islington (bot)2021-05-101-0/+21
* bpo-43149: Correct the syntax error message for multiple exception types (GH-...Miss Islington (bot)2021-05-091-1/+1
* Fix a word in dataclasses docs. (GH-26003) (GH-26004)Miss Islington (bot)2021-05-091-1/+1
* bpo-32924: Fix the Show Source url in the documentation (GH-25994)Pablo Galindo2021-05-081-1/+1
* bpo-42725: mention the changes on what's new (GH-25974)Miss Islington (bot)2021-05-081-0/+10
* Update the SOURCE_URI in pyspecific.py to point to the new branch (GH-25978)Pablo Galindo2021-05-081-1/+1
* Simple Enhancement. Add missing return statements in ftplib documentation. (G...Miss Islington (bot)2021-05-071-0/+2
* Fix minor grammar problems in dataclasses documentation (GH-25948) (GH-25958)Miss Islington (bot)2021-05-061-7/+7
* docs: clearly document that ":GH-X" string formatting results in "0X..." (GH-...Miss Islington (bot)2021-05-061-2/+4
* Clarify rx parameter of compileall functions (GH-25857)Miss Islington (bot)2021-05-041-4/+6
* fix enum.property reference in docs (GH-25875) (#25876)Miss Islington (bot)2021-05-041-1/+1
* bpo-32822: Add finally with return/break/continue to the tutorial (GH-25600) ...Miss Islington (bot)2021-05-041-0/+4
* Fix error in Enum documentation example code that was referring to the wrong ...Miss Islington (bot)2021-05-041-1/+1
* bpo-44025: Clarify when '_' is a keyword. (GH-25873)Miss Islington (bot)2021-05-041-2/+4
* Copyedits to 3.10 What's New (GH-25787) (#25883)Miss Islington (bot)2021-05-041-46/+46
* bpo-44001: improve Literal documentation (GH-25877) (#25882)Miss Islington (bot)2021-05-043-5/+5
* Add CI step to check changes in the exported ABI (GH-25868)Pablo Galindo2021-05-041-0/+15722
* bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...Pablo Galindo2021-05-031-1/+0
* Doc: Fix random.uniform example comment. (GH-25784)Julien Palard2021-05-031-1/+1