summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* Add doctest and improve readability for move_to_end() example. (GH-30370) (GH...Miss Islington (bot)2022-01-041-3/+5
* bpo-34931: [doc] clarify behavior of os.path.splitext() on paths with multipl...Miss Islington (bot)2022-01-031-1/+6
* argparse docs: prog default is the basename of argv[0] (GH-30298) (GH-30339)Miss Islington (bot)2022-01-021-1/+2
* bpo-46095: Improve SeqIter documentation. (GH-30316) (GH-30330)Miss Islington (bot)2022-01-011-0/+10
* [3.10] bpo-46120: State that `|` is preferred over `Union` (GH-30222) (GH-30250)Miss Islington (bot)2021-12-291-1/+1
* Fix typo in io.rst (GH-30218)Miss Islington (bot)2021-12-261-1/+1
* doc: fix a typo in unittest.mock.rst (GH-30227)Miss Islington (bot)2021-12-261-1/+1
* Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560)Miss Islington (bot)2021-12-261-2/+3
* Update potentially confusing note for mean. (GH-30174) (GH-30220)Miss Islington (bot)2021-12-211-4/+5
* [3.10] bpo-46104: Fix example broken by GH-30148 (GH-30203) (GH-30209)Miss Islington (bot)2021-12-201-1/+1
* bpo-46113: Minor fixes in stdtypes documentation (GH-30167) (GH-30186)Miss Islington (bot)2021-12-181-8/+8
* [3.10] bpo-46104: Reduce use of pre-PEP 526 syntax in typing docs (GH-30148) ...Miss Islington (bot)2021-12-181-9/+8
* bpo-28816: [doc] clarify that zipimport invokes importers only for python fil...Miss Islington (bot)2021-12-161-2/+2
* Add Positional only arguments forward slash (/) to sorted() function in Built...Miss Islington (bot)2021-12-151-1/+1
* [3.10] bpo-46063: Improve algorithm for computing which rolled-over log fileā...Miss Islington (bot)2021-12-141-0/+17
* Clarify new_event_loop return value. (GH-30078) (GH-30088)Miss Islington (bot)2021-12-131-1/+1
* [3.10] bpo-37602: Clarify that the lib2to3 nonzero fixer changes only definit...Irit Katriel2021-12-131-1/+2
* [3.10] bpo-46040: Fix removal text for @asyncio.coroutine (GH-30061)Andrew Svetlov2021-12-111-1/+1
* bpo-19737: Improved the documentation for globals (GH-29823) (GH-30041)Miss Islington (bot)2021-12-111-3/+3
* bpo-42114: ctypes documentation: fix winmode parameter default value (GH-2997...Miss Islington (bot)2021-12-101-3/+3
* bpo-42182: stdtypes doc - update and fix links to several dunder methods (GH...Miss Islington (bot)2021-12-101-9/+10
* bpo-45391: mark UnionType as a class in documentation (GH-28757)Miss Islington (bot)2021-12-091-1/+1
* [3.10] bpo-46009: Do not exhaust generator when send() method raises (GH-2998...Mark Shannon2021-12-081-3/+2
* [3.10] bpo-35821: Fix restructuredtext code formatting in logging.rst (GH-299...Miss Islington (bot)2021-12-071-5/+5
* [3.10] bpo-35821: Add an example to Logger.propagate documentation. (GH-29841...Miss Islington (bot)2021-12-071-0/+9
* bpo-46001: Change OverflowError to RecursionError in JSON library docstrings ...Miss Islington (bot)2021-12-071-2/+2
* docs: Improve example for urlparse() (GH-29816) (GH-29888)Miss Islington (bot)2021-12-021-31/+42
* bpo-45896: Fix docs default asyncio event loop on Windows (GH-29857) (GH-29877)Miss Islington (bot)2021-12-011-3/+4
* bpo-33381: [doc] strftime's %f option may pad zeros on the left or the right ...Miss Islington (bot)2021-11-301-2/+2
* bpo-43905: Expand dataclasses.astuple() and asdict() docs (GH-26154)Miss Islington (bot)2021-11-291-4/+18
* [3.10] bpo-45568: Actually use @asynccontextmanager in usage example (GH-2915...Andrew Svetlov2021-11-251-0/+2
* bpo-45693: Document `port` parameter to `loop.create_server` (GH-29760) (GH-2...Miss Islington (bot)2021-11-241-0/+5
* [3.10] bpo-45250: fix docs regarding `__iter__` and iterators being inconsist...Brett Cannon2021-11-222-20/+18
* [3.10] bpo-45788: Link sys.prefix doc to 'Installation paths' (GH-29606)Miss Islington (bot)2021-11-182-7/+6
* [3.10] [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`...Miss Islington (bot)2021-11-181-0/+1
* [doc] Expand on soft keywords in the docs for keyword.py (GH-29139) (GH-29195)Miss Islington (bot)2021-11-181-3/+3
* bpo-45701: Improve documentation for *typed* parameter (GH-29498) (GH-29509)Miss Islington (bot)2021-11-181-4/+10
* [3.10] [Enum] update member.member removal (GH-29608)Ethan Furman2021-11-181-1/+1
* [docs] Add missing word "any" in unittest -k cmdline option description (GH-2...Miss Islington (bot)2021-11-181-1/+1
* Save a reference for ensure_future and create_task (GH-29163)Miss Islington (bot)2021-11-162-0/+8
* bpo-45677: Reword first section of `sqlite3` docs (GH-29326) (GH-29566)Miss Islington (bot)2021-11-151-18/+20
* [3.10] bpo-45752: Fix no-support examples in 'copy' docs (GH-29548) (GH-29556)M. Mostafa Farzan2021-11-141-1/+1
* bpo-45799: [Doc] improve confusing sentence in __main__.rst (GH-29546)Miss Islington (bot)2021-11-131-2/+2
* [3.10] bpo-45772: socket.socket should be a class instead of a function (GH-2...Miss Islington (bot)2021-11-131-1/+1
* bpo-45792: Fix contextvar.Token's intersphinx FQN (GH-29533) (GH-29535)Miss Islington (bot)2021-11-121-1/+1
* bpo-39452: [doc] Change "must" to "can" on relative import style in `__main__...Miss Islington (bot)2021-11-061-1/+1
* bpo-45762: Improve docs for ``@singledispatch``/``@singledispatchmethod`` (GH...Miss Islington (bot)2021-11-051-22/+26
* Remove reference to ``Tuple`` at top of ``typing`` docs (GH-29401)Miss Islington (bot)2021-11-041-4/+3
* bpo-45680: ``typing`` docs: improve links to docs on ``GenericAlias``/``__cla...Miss Islington (bot)2021-11-041-4/+4
* [doc] Link to section File input (GH-28941) (GH-29375)Miss Islington (bot)2021-11-021-1/+1