summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
...
* Fix typo in typing.rst (GH-22625)Miss Skeleton (bot)2020-10-111-1/+1
* bpo-41376: Fix the documentation of `site.getusersitepackages()` (GH-21602)Miss Skeleton (bot)2020-10-081-1/+3
* bpo-41584: clarify when the reflected method of a binary arithemtic operator ...Miss Skeleton (bot)2020-10-051-7/+8
* Merge tag 'v3.9.0' into 3.9Łukasz Langa2020-10-051-65/+299
|\
| * Python 3.9.0v3.9.0Łukasz Langa2020-10-051-65/+299
| * bpo-37062: Enum: add extended AutoNumber example (GH-22349) (GH-22370)Miss Islington (bot)2020-10-041-0/+26
| * [3.9] Remove duplicated words words (GH-22298). (GH-22299)Serhiy Storchaka2020-10-042-3/+3
| * [3.9] Remove duplicated words words (GH-20413). (GH-22296)Serhiy Storchaka2020-10-043-3/+3
| * [doc] Use list[int] instead of List[int] (etc.) in a few more places (GH-22524)Miss Skeleton (bot)2020-10-042-8/+8
| * [doc] Fix link to abc.collections.Iterable (GH-22520)Miss Skeleton (bot)2020-10-041-2/+2
| * [3.9] bpo-40833: Clarify Path.rename doc-string regarding relative paths (GH-...Miss Skeleton (bot)2020-10-041-0/+8
| * [doc] Fix link to abc.collections.Iterable (GH-22502)Miss Skeleton (bot)2020-10-041-1/+1
| * bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291)Miss Islington (bot)2020-10-041-4/+6
| * Fix grammar in secrets module documentation (GH-22467)Miss Islington (bot)2020-10-041-1/+1
| * [doc] Leverage the fact that the actual types can now be indexed for typing (...Miss Islington (bot)2020-10-042-30/+29
| * bpo-41858: Clarify line in optparse doc (GH-22407)Miss Islington (bot)2020-10-041-1/+1
| * bpo-41844: Add IDLE section to What's New 3.9 (GN-22382)Miss Islington (bot)2020-10-041-0/+14
| * bpo-35293: Travis CI uses "make venv" for the doc (GH-22307) (GH-22309)Victor Stinner2020-10-042-4/+11
| * bpo-41762: Fix usage of productionlist markup in the doc (GH-22281)Miss Islington (bot)2020-10-048-69/+70
| * [3.9] bpo-27032, bpo-37328: Document removing HTMLParser.unescape() (GH-22288)Terry Jan Reedy2020-10-041-0/+5
* | bpo-41774: Tweak new programming FAQ entry (GH-22562)Miss Skeleton (bot)2020-10-051-1/+1
* | bpo-41892: Clarify that an example in the ElementTree docs explicitly avoids ...Miss Skeleton (bot)2020-10-041-0/+6
* | bpo-41898: add caveat on root logger seeing all messages in assertLogs doc (G...Miss Skeleton (bot)2020-10-041-1/+2
* | [doc] Use list[int] instead of List[int] (etc.) in a few more places (GH-22524)Miss Skeleton (bot)2020-10-032-8/+8
* | [doc] Fix link to abc.collections.Iterable (GH-22520)Miss Skeleton (bot)2020-10-031-2/+2
* | [3.9] bpo-40833: Clarify Path.rename doc-string regarding relative paths (GH-...Miss Skeleton (bot)2020-10-031-0/+8
* | [doc] Fix link to abc.collections.Iterable (GH-22502)Miss Skeleton (bot)2020-10-021-1/+1
* | bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291)Miss Islington (bot)2020-10-021-4/+6
* | Fix grammar in secrets module documentation (GH-22467)Miss Islington (bot)2020-09-301-1/+1
* | bpo-41774: Add programming FAQ entry (GH-22402)Miss Islington (bot)2020-09-291-0/+15
* | [doc] Leverage the fact that the actual types can now be indexed for typing (...Miss Islington (bot)2020-09-272-30/+29
* | bpo-41858: Clarify line in optparse doc (GH-22407)Miss Islington (bot)2020-09-271-1/+1
* | bpo-41844: Add IDLE section to What's New 3.9 (GN-22382)Miss Islington (bot)2020-09-231-0/+14
* | bpo-33822: Update IDLE section of What's New 3.8 (GH-22383)Miss Islington (bot)2020-09-231-0/+10
* | bpo-37062: Enum: add extended AutoNumber example (GH-22349) (GH-22370)Miss Islington (bot)2020-09-231-0/+26
* | bpo-35764: Rewrite the IDLE Calltips doc section (GH-22363)Miss Islington (bot)2020-09-221-22/+25
* | bpo-35293: Travis CI uses "make venv" for the doc (GH-22307) (GH-22309)Victor Stinner2020-09-182-4/+11
* | bpo-35293: Remove RemovedInSphinx40Warning (GH-22198)Miss Islington (bot)2020-09-181-15/+21
* | bpo-41762: Fix usage of productionlist markup in the doc (GH-22281)Miss Islington (bot)2020-09-188-69/+70
* | [3.9] Remove duplicated words words (GH-22298). (GH-22299)Serhiy Storchaka2020-09-182-3/+3
* | [3.9] Remove duplicated words words (GH-20413). (GH-22296)Serhiy Storchaka2020-09-183-3/+3
* | [3.9] bpo-27032, bpo-37328: Document removing HTMLParser.unescape() (GH-22288)Terry Jan Reedy2020-09-181-0/+5
|/
* Improve the description of difflib in the documentation (GH-22253) (#22261)Miss Islington (bot)2020-09-151-2/+2
* bpo-41776: Revise example of "continue" in the tutorial documentation (GH-222...Miss Islington (bot)2020-09-151-5/+5
* bpo-40721: add note about enum member name case (GH-22231)Miss Islington (bot)2020-09-141-0/+6
* [3.9] bpo-41778: Change a punctuation on documentation. (GH-22229) (GH-22232)Emmanuel Arias2020-09-131-2/+2
* bpo-33239: Fix default value of 'buffering' parameter in docs of tempfile.* f...Miss Islington (bot)2020-09-131-3/+3
* bpo-41672: Fix type mismatches in imaplib docs (GH-22207)Miss Islington (bot)2020-09-121-2/+2
* [doc] struct: update note about network byte order form to be more helpful (G...Miss Islington (bot)2020-09-111-2/+4
* Doc: Fix alphabetical ordering of removeprefix/suffix. (GH-22194)Miss Islington (bot)2020-09-111-27/+28