summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-126259: Fix "unclosed database" warning in sqlite3 doctest (#126260)sobolevn2024-11-011-0/+1
* GH-125413: Add `pathlib.Path.scandir()` method (#126060)Barney Gale2024-11-011-0/+29
* gh-126256: Update time.rst to use the same clock as instead of the same clock...Alperen Keleş2024-10-311-2/+2
* gh-125818: Fix incorrect signature of argument `skip_file_prefixes` in warnin...RUANG (James Roy)2024-10-311-1/+1
* gh-114990: Add missing mixin methods in collections.abc's document (GH-114991)AN Long2024-10-301-2/+3
* gh-126055: Add omitted command (in docs [os.walk]) for code to fulfill `shut...Victor Wheeler2024-10-301-0/+1
* gh-60712: Include the "object" type in the lists of documented types (GH-103036)Furkan Onder2024-10-301-3/+4
* Fix incorrect indentation in importlib.metadata.rst (GH-126189)Rafael Fontenelle2024-10-301-3/+3
* gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)Xuanteng Huang2024-10-301-0/+8
* gh-126071: Improve formatting of the argparse documentation (GH-126073)Serhiy Storchaka2024-10-301-65/+72
* gh-118633: Add warning regarding the unsafe usage of eval and exec (GH-118437)Daniel Ruf2024-10-301-0/+10
* gh-124855: Don't allow the JIT and perf support to be active at the same time...Pablo Galindo Salgado2024-10-301-0/+2
* Doc: Note that pydoc uses and prefers ``MANPAGER`` (#125362)Matthieu Ancellin2024-10-291-2/+3
* gh-116938: Fix `dict.update` docstring and remove erraneous full stop from `d...Prometheus33752024-10-291-1/+1
* gh-122767: document "new style" formatting for complexes (GH-122848)Sergey B Kirpichev2024-10-291-5/+15
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-7/+16
* gh-89762: Document strftime %G, %V, and %u format specifiers (#124572)RUANG (James Roy)2024-10-281-0/+13
* gh-126012: Add `__class_getitem__` to `memoryview` (#126013)Brian Schubert2024-10-271-0/+3
* gh-125633: Add function `ispackage` to stdlib `inspect` (#125634)Zhikang Yan2024-10-271-0/+7
* gh-120313: amend documentation regarding `ctypes._CFuncPtr` (GH-120989)Bénédikt Tran2024-10-251-19/+29
* gh-84545: Clarify the 'extend' action documentation in argparse (GH-125870)Serhiy Storchaka2024-10-251-11/+15
* gh-125665: Update turtledemo docstrings with correct file names (#125691)Wulian2024-10-231-3/+0
* gh-125286: Share the Main Refchain With Legacy Interpreters (gh-125709)Eric Snow2024-10-231-0/+29
* gh-58032: Deprecate the argparse.FileType type converter (GH-124664)Serhiy Storchaka2024-10-231-9/+16
* gh-80958: unittest: discovery support for namespace packages as start directo...Jacob Walls2024-10-231-21/+14
* gh-124969: Make locale.nl_langinfo(locale.ALT_DIGITS) returning a string agai...Serhiy Storchaka2024-10-211-3/+4
* gh-125767: Fix pickling and copying of super objects (GH-125781)Serhiy Storchaka2024-10-211-0/+4
* Doc: Fix typos (#125728)ember912024-10-212-2/+2
* gh-99030: Added documentation links for types and exceptions (GH-123857)RUANG (Roy James)2024-10-211-4/+8
* Doc: Fix pluralization in os.process_cpu_count() documentation (#125678)Tom Most2024-10-201-1/+1
* gh-125541: Make Ctrl-C interrupt `threading.Lock.acquire()` on Windows (#125546)Sam Gross2024-10-172-6/+6
* gh-118986: expose `socket.IPV6_RECVERR` (#118987)chrysn2024-10-171-2/+2
* gh-125542: Deprecate prefix_chars in ArgumentParser.add_argument_group() (GH-...Savannah Ostrowski2024-10-171-0/+4
* GH-99749: Add optional feature to suggest correct names (ArgumentParser) (GH-...Savannah Ostrowski2024-10-171-1/+27
* gh-124694: Add concurrent.futures.InterpreterPoolExecutor (gh-124548)Eric Snow2024-10-164-8/+144
* Python 3.14.0a1v3.14.0a1Hugo van Kemenade2024-10-155-10/+10
* gh-89819: Add argument_default and conflict_handler to add_argument_group() d...Savannah Ostrowski2024-10-151-1/+7
* gh-85453: Improve variable mark up for datetime.rst (#120702)edson duarte2024-10-141-17/+17
* gh-121798: Add class method Decimal.from_number() (GH-121801)Serhiy Storchaka2024-10-141-0/+17
* gh-121797: Add class method Fraction.from_number() (GH-121800)Serhiy Storchaka2024-10-141-0/+10
* gh-123133: clarify p=0 case for "f" and "e" formatting types (GH-125426)Sergey B Kirpichev2024-10-141-6/+4
* gh-125289: Update sample code in asyncio-task.rst (GH-125292)Ghorban M. Tavakoly2024-10-121-1/+1
* gh-125260: Change the default ``gzip.compress()`` mtime to 0 (#125261)Bernhard M. Wiedemann2024-10-121-2/+7
* gh-85935: Explicitly document the case nargs=0 in argparse (GH-125302)Serhiy Storchaka2024-10-121-0/+5
* gh-59330: Improve error message for dest= for positionals (GH-125215)Serhiy Storchaka2024-10-121-0/+19
* gh-116938: Clarify documentation of `dict` and `dict.update` regarding the po...Victorien2024-10-111-12/+13
* Fix typo in ``Doclibrary/functions.rst`` (#125327)Rafael Fontenelle2024-10-111-1/+1