summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* GH-127133: Remove ability to nest argument groups & mutually exclusive groups...Savannah Ostrowski2024-11-241-10/+9
* GH-125866: Preserve Windows drive letter case in file URIs (#127138)Barney Gale2024-11-231-0/+7
* GH-127134: Add note about forward compatibility for suggest_on_error (#127137)Savannah Ostrowski2024-11-231-0/+8
* Fix a few typos found in the docs (GH-127126)Rafael Fontenelle2024-11-233-4/+4
* gh-86463: Fix a trailing space in argparse.rst (#127162)Serhiy Storchaka2024-11-221-1/+1
* gh-127001: Fix PATHEXT issues in shutil.which() on Windows (GH-127035)Serhiy Storchaka2024-11-221-6/+0
* gh-86463: Fix default prog in subparsers if usage is used in the main parser ...Serhiy Storchaka2024-11-221-0/+10
* gh-127082: Replace "Windows only" with the `availability: Windows` in `ctypes...Jun Komoda2024-11-221-15/+48
* GH-122679: Add `register()` to argparse docs (#126939)Savannah Ostrowski2024-11-221-3/+33
* GH-126601: `pathname2url()`: handle NTFS alternate data streams (#126760)Barney Gale2024-11-221-0/+5
* gh-126727: Fix locale.nl_langinfo(locale.ERA) (GH-126730)Serhiy Storchaka2024-11-211-4/+6
* GH-127010: Don't lazily track and untrack dicts (GH-127027)Mark Shannon2024-11-201-2/+0
* gh-126615: `ctypes`: Make `COMError` public (GH-126686)Jun Komoda2024-11-201-6/+41
* Python 3.14.0a2v3.14.0a2Hugo van Kemenade2024-11-198-12/+12
* GH-84850: Remove `urllib.request.URLopener` and `FancyURLopener` (#125739)Barney Gale2024-11-191-121/+4
* gh-123803: Support arbitrary code page encodings on Windows (GH-123804)Serhiy Storchaka2024-11-181-0/+7
* Doc: Reorganize math module documentation (#126337)Joseph Martinot-Lagarde2024-11-181-226/+250
* gh-126896: Fix docs about `asyncio.start_server()` (#126897)beavailable2024-11-171-1/+5
* Added a warning to the urljoin docs, indicating that it is not safe to use wi...Alex Gaynor2024-11-151-0/+9
* gh-122549: Add platform.invalidate_caches() (#122547)Bénédikt Tran2024-11-151-0/+12
* gh-125063: marshal: Add version 5, improve documentation (GH-126829)Petr Viktorin2024-11-151-18/+46
* gh-89083: small docs fixup for UUIDv8 (#126857)Bénédikt Tran2024-11-151-3/+6
* gh-123832: Adjust `socket.getaddrinfo` docs for better POSIX compliance (GH-1...Petr Viktorin2024-11-141-3/+32
* gh-126731: Update outdated project information in `pprint.pp` doc (#126732)Wulian2024-11-141-1/+1
* gh-126390: Support for preserving order of options and nonoption arguments in...Serhiy Storchaka2024-11-131-0/+24
* gh-126175: Add attributes to TOMLDecodeError. Deprecate free-form `__init__` ...Taneli Hukkinen2024-11-131-2/+29
* gh-116897: Deprecate generic false values in urllib.parse.parse_qsl() (GH-116...Serhiy Storchaka2024-11-121-0/+8
* gh-89083: add support for UUID version 8 (RFC 9562) (#123224)Bénédikt Tran2024-11-121-9/+33
* gh-125916: Allow functools.reduce() 'initial' to be a keyword argument (#125917)Sayandip Dutta2024-11-121-2/+5
* Docs: re-create pages for removed modules to document their removal. (#126622)Ned Batchelder2024-11-1126-0/+442
* Update documentation links to Microsoft's documentation pages (GH-126379)谭九鼎2024-11-112-2/+2
* gh-126374: Add support of options with optional arguments in the getopt modul...Serhiy Storchaka2024-11-111-3/+23
* gh-126543: Docs: change "bound type var" to "bounded" when used in the contex...Pedro Fonini2024-11-111-11/+11
* gh-125298: Remove misleading text in os.kill documentation (GH-125749)RUANG (James Roy)2024-11-081-2/+1
* gh-122838: Document missing opcodes (#123073)Kamil Turek2024-11-061-0/+21
* GH-124985: Document that `pathlib.Path.copy()` uses copy-on-write. (#125861)Barney Gale2024-11-051-0/+5
* gh-119793: Prefer `map(..., strict=True)` over starmap/zip in examples (#126407)Lukas Geiger2024-11-051-1/+1
* gh-120057: Add os.reload_environ() function (#126268)Victor Stinner2024-11-051-9/+24
* gh-125436: Doc: Add missing ``allow_unnamed_section`` parameter to ``ConfigPa...lit2024-11-051-3/+28
* Doc: Fix typo in documentation for ``MAKE_FUNCTION`` opcode (#126396)Mikhail Efimov2024-11-041-1/+1
* gh-119793: Add optional length-checking to `map()` (GH-120471)Nice Zombies2024-11-041-3/+8
* gh-126353: remove implicit creation of loop from `asyncio.get_event_loop` (#1...Kumar Aditya2024-11-042-8/+5
* Docs: turn getopt examples into doctests (#126377)Erlend E. Aasland2024-11-041-2/+10
* gh-126165: Improve docs of function `math.isclose` (#126215)Zhikang Yan2024-11-042-16/+20
* gh-99880: document rounding mode for new-style formatting (GH-121481)Sergey B Kirpichev2024-11-021-0/+5
* gh-125761: Clarify repeated warning suppression criteria in warnings module (...고병찬2024-11-021-0/+13
* gh-125875: Fix docs typo FORMAT_SPEC to FORMAT_WITH_SPEC (gh-126319)rimchoi2024-11-021-1/+1
* Doc: Add a single table as summary to math documentation (GH-125810)Joseph Martinot-Lagarde2024-11-011-3/+89
* docs: add a more precise example in enum doc (GH-121015)Filip "Ret2Me" Poplewski2024-11-011-1/+1
* gh-97850: remove ``find_loader`` and ``get_loader`` from ``pkgutil`` (#119656)Bénédikt Tran2024-11-011-40/+0