summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* [3.12] typing docs: fix indentation of TypedDict deprecation notice (#120124)Alex Waygood2024-06-051-3/+3
* [3.12] gh-119287: clarify doc on BaseExceptionGroup.derive and link to it fro...Miss Islington (bot)2024-06-052-2/+5
* [3.12] gh-120078: Fix struct_time attr typo tm_day -> tm_mday in Doc/library/...Miss Islington (bot)2024-06-051-1/+1
* [3.12] GH-119054: Add "Reading and writing files" section to pathlib docs (GH...Barney Gale2024-06-021-76/+81
* [3.12] GH-119054: Add "Querying file type and status" section to pathlib docs...Barney Gale2024-06-021-145/+151
* [3.12] Improve documentation for typing.get_type_hints (GH-119928) (#119944)Miss Islington (bot)2024-06-021-26/+28
* [3.12] Add unique() recipe to itertools docs (gh-119911) (gh-119917)Miss Islington (bot)2024-06-011-2/+14
* [3.12] contextlib docs: Clean up redundant 'up' after 'cleanup' (GH-119873)Miss Islington (bot)2024-05-311-1/+1
* [3.12] gh-109218: Improve documentation for the complex() constructor (GH-119...Serhiy Storchaka2024-05-302-57/+123
* [3.12] subprocess docs: Fix semantically important typo (GH-119752) (#119758)Miss Islington (bot)2024-05-301-1/+1
* [3.12] gh-119260: Clarify is_dataclass Behavior for Subclasses in Documentati...Miss Islington (bot)2024-05-301-2/+2
* [3.12] Clarify base64.a85encode docs: *wrapcols* doesn't count the newline (G...Miss Islington (bot)2024-05-281-1/+1
* [3.12] [doc] Clarify the nature of the root logger in the `logging` documenta...Miss Islington (bot)2024-05-281-9/+11
* [3.12] Misc cleanups and wording improvements for the itertools docs (gh-119631)Raymond Hettinger2024-05-271-122/+116
* [3.12] gh-119580: Improve version added section for convenience variable (GH-...Miss Islington (bot)2024-05-271-0/+2
* [3.12] docs: fix a few typos identified by codespell (GH-119516) (#119571)Hugo van Kemenade2024-05-266-8/+8
* [3.12] Misc improvements to the docs for itertools (gh-119532)Raymond Hettinger2024-05-241-55/+55
* [3.12] gh-90562: Mention slots pitfall in dataclass docs (GH-107391) (#119351)Miss Islington (bot)2024-05-231-1/+4
* [3.12] gh-70795: Rework RLock documentation (GH-103853) (#119437)Miss Islington (bot)2024-05-221-24/+51
* [3.12] Clarify that dklen is expected in bytes for the hashlib functions (GH-...Miss Islington (bot)2024-05-221-2/+2
* [3.12] gh-110383: Align dict.get(), .fromkeys(), and .setdefault() docs with ...Miss Islington (bot)2024-05-221-3/+3
* [3.12] gh-110383: Document `socket.makefile()` accepts combined modes (GH-119...Miss Islington (bot)2024-05-211-1/+2
* [3.12] gh-118912: Remove description of issue fixed in 3.5 from autospeccing ...Miss Islington (bot)2024-05-201-32/+8
* [3.12] gh-108267 Fix another dataclasses docs typo (GH-119277) (#119280)Miss Islington (bot)2024-05-201-1/+2
* [3.12] Use correct markup in unittest.mock.reset_mock documentation (GH-11920...Miss Islington (bot)2024-05-201-3/+3
* [3.12] DOCS: Suggest always calling exec with a globals argument and no local...Miss Islington (bot)2024-05-201-3/+7
* [3.12] marshal docs: Remove reference to "Sun" (GH-119161) (#119168)Miss Islington (bot)2024-05-191-1/+1
* [3.12] Minor improvements to the docs for itertools.tee() (gh-119135) (gh-119...Miss Islington (bot)2024-05-181-10/+11
* [3.12] gh-108267: Fix object.__setattr__ regression in dataclasses docs (GH-1...Miss Islington (bot)2024-05-161-1/+2
* [3.12] Misc improvements to the itertools docs (gh-119040) (#119044)Miss Islington (bot)2024-05-141-35/+26
* [3.12] Itertools docs: fix parameter names and indentation in Python equivale...Miss Islington (bot)2024-05-141-5/+5
* [3.12] gh-119010: Adds docs about `__type_params__` to `functools.update_wrap...Miss Islington (bot)2024-05-131-2/+6
* [3.12] Improve the `rmtree` doc for `dir_fd` param addition in 3.11 (GH-11896...Miss Islington (bot)2024-05-131-1/+1
* [3.12] GH-118701: Note that recursive wildcards aren't supported in `PurePath...Barney Gale2024-05-111-0/+4
* [3.12] Correct the argument names for `secrets.choice` and `secrets.randbelow...Miss Islington (bot)2024-05-101-3/+3
* gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488)Steve Dower2024-05-091-0/+7
* [3.12] Format None, True, False and NotImplemented as literals (GH-118758) (G...Serhiy Storchaka2024-05-0824-56/+56
* [3.12] docs: module page titles should not start with a link to themselves (G...Miss Islington (bot)2024-05-08220-443/+440
* [3.12] Docs: fix typos in documentation (GH-118752) (#118786)Miss Islington (bot)2024-05-084-4/+4
* [3.12] gh-118671: Updated dead ActiveState links (GH-118730) (#118754)Miss Islington (bot)2024-05-087-7/+7
* [3.12] gh-118310: Fix documentation for `enum.Enum.__new__` (GH-118311) (GH-1...Miss Islington (bot)2024-05-071-5/+7
* [3.12] gh-78612: Mark up eval() using param list (GH-115212) (#116044)Miss Islington (bot)2024-05-071-5/+15
* [3.12] Expand recipe for kernel density estimation to include common tasks. (...Raymond Hettinger2024-05-061-10/+46
* [3.12] Fix typo in Doc/library/asyncio-task.rst (GH-118627) (#118657)Miss Islington (bot)2024-05-061-1/+1
* [3.12] GH-115577 Clarify netloc term usage in urllib.parse docs (GH-117632) (...Miss Islington (bot)2024-05-061-0/+5
* [3.12] gh-118476: Fix corner cases in islice() rough equivalent. (Gh-118559) ...Miss Islington (bot)2024-05-051-18/+11
* [3.12] Minor improvements to the itertools recipes (GH-118563) (#118565)Miss Islington (bot)2024-05-031-24/+12
* [3.12] docs: clarify csv.DictReader's treatment of the first data row (GH-118...Miss Islington (bot)2024-05-031-2/+4
* [3.12] gh-117492: Clarify documentation of `typing.Never` (GH-117678) (#118547)Miss Islington (bot)2024-05-031-24/+22
* [3.12] gh-117903: Clarify that the staticmethod descriptor is callable (GH-11...Miss Islington (bot)2024-05-021-2/+3