cpython/Doc/library
Sergey B Kirpichev f39a07be47
gh-87790: support thousands separators for formatting fractional part of floats (#125304)
```pycon
>>> f"{123_456.123_456:_._f}"  # Whole and fractional
'123_456.123_456'
>>> f"{123_456.123_456:_f}"    # Integer component only
'123_456.123456'
>>> f"{123_456.123_456:._f}"   # Fractional component only
'123456.123_456'
>>> f"{123_456.123_456:.4_f}"  # with precision
'123456.1_235'
```
2025-02-25 16:27:07 +01:00
..
__future__.rst gh-125168: Fix typo in `__future__.rst` (#125183) 2024-10-09 16:17:18 +03:00
__main__.rst gh-128720: Fix doc inacurracy about __main__.__file__ existence in the REPL (#128721) 2025-01-21 19:52:21 +00:00
_thread.rst gh-125541: Make Ctrl-C interrupt `threading.Lock.acquire()` on Windows (#125546) 2024-10-17 20:10:55 +02:00
abc.rst Docs: Fix some semantic usages of `iterator.__iter__` (GH-130172) 2025-02-25 13:38:47 +01:00
aifc.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
allos.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
annotationlib.rst gh-119180: Add VALUE_WITH_FAKE_GLOBALS format to annotationlib (#124415) 2024-11-26 15:40:13 +00:00
archiving.rst
argparse.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
array.rst gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) 2024-07-19 08:06:02 +00:00
ast.rst Clarify ast docs to use a less confusing example for `ast.ParamSpec` (#127955) 2024-12-15 12:28:43 +00:00
asynchat.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
asyncio-api-index.rst
asyncio-dev.rst gh-124694: Add concurrent.futures.InterpreterPoolExecutor (gh-124548) 2024-10-16 16:50:46 -06:00
asyncio-eventloop.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
asyncio-exceptions.rst Clarify state of CancelledError in doc (#106453) 2023-07-05 08:07:02 -07:00
asyncio-extending.rst gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386) 2023-07-29 08:48:10 +03:00
asyncio-future.rst Docs: spelling and grammar fixes (#122084) 2024-07-22 09:14:25 +08:00
asyncio-graph.rst Python 3.14.0a5 2025-02-11 19:16:29 +02:00
asyncio-llapi-index.rst gh-124694: Add concurrent.futures.InterpreterPoolExecutor (gh-124548) 2024-10-16 16:50:46 -06:00
asyncio-platforms.rst GH-120804: add docs for removal for asyncio child watchers (#120895) 2024-06-23 13:14:12 +00:00
asyncio-policy.rst Python 3.14.0a4 2025-01-14 13:52:58 +02:00
asyncio-protocol.rst gh-113812: Allow DatagramTransport.sendto to send empty data (#115199) 2024-02-16 18:38:07 -08:00
asyncio-queue.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
asyncio-runner.rst gh-127949: make deprecation of policy system more prominent (#128290) 2024-12-27 15:13:41 +00:00
asyncio-stream.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
asyncio-subprocess.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
asyncio-sync.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
asyncio-task.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
asyncio.rst GH-91048: Add utils for capturing async call stack for asyncio programs and enable profiling (#124640) 2025-01-22 17:25:29 +01:00
asyncore.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
atexit.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
audioop.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
audit_events.rst gh-115777: Fix double versionadded directives (GH-116269) 2024-03-05 17:41:53 +02:00
base64.rst Clarify base64.a85encode docs: *wrapcols* doesn't count the newline (GH-119409) 2024-05-24 00:11:45 +02:00
bdb.rst Format None, True, False and NotImplemented as literals (GH-118758) 2024-05-08 22:35:16 +03:00
binary.rst
binascii.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
bisect.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
builtins.rst gh-99030: Added documentation links for types and exceptions (GH-123857) 2024-10-20 17:36:27 -07:00
bz2.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
calendar.rst gh-128317: Move CLI calendar highlighting to private class (#129625) 2025-02-08 15:56:57 +00:00
cgi.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
cgitb.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
chunk.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
cmath.rst gh-69639: Add mixed-mode rules for complex arithmetic (C-like) (GH-124829) 2024-11-26 17:57:39 +02:00
cmd.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
cmdline.rst gh-123834: Add `symtable` to the list of modules with a CLI (#123835) 2024-09-09 13:45:43 +02:00
cmdlinelibs.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
code.rst gh-74929: PEP 667 general docs update (gh-119201) 2024-05-21 03:32:15 +00:00
codecs.rst gh-123803: Support arbitrary code page encodings on Windows (GH-123804) 2024-11-18 17:45:25 +00:00
codeop.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
collections.abc.rst gh-130159: Fix list indentation in collections.abc (#130165) 2025-02-22 01:41:15 +00:00
collections.rst gh-101100: Fix Sphinx warnings about list methods (#127054) 2024-12-02 15:51:35 +02:00
colorsys.rst gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) 2024-07-19 08:06:02 +00:00
compileall.rst gh-123492: Remove unnecessary `:func:` parentheses (#123493) 2024-08-30 14:34:09 +03:00
concurrency.rst
concurrent.futures.rst Doc: Typo fix: nrace -> race (#127288) 2024-11-26 15:05:07 +02:00
concurrent.rst gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386) 2023-07-29 08:48:10 +03:00
configparser.rst gh-65697: Prevent configparser from writing keys it cannot properly read (#129270) 2025-02-23 11:06:33 -05:00
constants.rst gh-103066: Add links and `help` in site.py constants (#103777) 2024-09-06 10:29:28 +03:00
contextlib.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
contextvars.rst gh-129889: Support context manager protocol by contextvars.Token (#129888) 2025-02-12 12:32:58 +01:00
copy.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
copyreg.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
crypt.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
crypto.rst gh-104773: PEP 594: Remove the crypt module (#104908) 2023-05-25 15:45:46 +02:00
csv.rst Format None, True, False and NotImplemented as literals (GH-118758) 2024-05-08 22:35:16 +03:00
ctypes.rst Fix some ctypes docs typos (GH-130307) 2025-02-20 11:58:50 +01:00
curses.ascii.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
curses.panel.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
curses.rst gh-116622: Complete Android documentation (#124259) 2024-09-23 23:09:53 +00:00
custominterp.rst
dataclasses.rst gh-130130: Clarify `hash=False` docs in `dataclasses.field` (#130324) 2025-02-20 02:43:27 -05:00
datatypes.rst
datetime.rst Use roles :data: and :const: for referencing module variables (GH-129507) 2025-02-04 16:16:41 +02:00
dbm.rst gh-101100: Docs: Fix some typos in the document (#129988) 2025-02-11 13:06:32 +02:00
debug.rst
decimal.rst Use roles :data: and :const: for referencing module variables (GH-129507) 2025-02-04 16:16:41 +02:00
development.rst gh-104780: Remove 2to3 program and lib2to3 module (#104781) 2023-05-23 19:40:02 +02:00
devmode.rst gh-101100: Fix sphinx warnings in `library/devmode.rst` (#109963) 2023-09-27 16:07:28 +03:00
dialog.rst gh-110631: Fix reST indentation in `Doc/library` (#110685) 2023-10-11 22:24:12 +02:00
difflib.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
dis.rst Add `.. versionadded` directive to `dis` CLI options (#130267) 2025-02-21 15:59:17 +03:00
distribution.rst
distutils.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
doctest.rst gh-127221: Add colour to unittest output (#127223) 2024-12-05 21:10:46 +02:00
email.charset.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
email.compat32-message.rst gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518) 2024-09-01 05:59:42 +01:00
email.contentmanager.rst gh-121542: Document trailing newline behavior in `set_content()` (#121543) 2025-01-18 20:34:40 +02:00
email.encoders.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
email.errors.rst gh-121650: Encode newlines in headers, and verify headers are sound (GH-122233) 2024-07-31 00:19:48 +02:00
email.examples.rst Fix the french used in the email documentation (GH-106279) 2023-07-16 19:14:08 +02:00
email.generator.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
email.header.rst gh-120276: Fix incorrect email.header.Header maxlinelen default (GH-120277) 2024-06-08 20:18:58 +03:00
email.headerregistry.rst gh-101100: Add a table of class attributes to the "Custom classes" section of the data model docs (#124480) 2024-09-25 19:29:58 +00:00
email.iterators.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
email.message.rst gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518) 2024-09-01 05:59:42 +01:00
email.mime.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
email.parser.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
email.policy.rst Docs: fix `MessageDefect` references in email.policy docs (#128468) 2025-01-05 22:58:31 +01:00
email.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
email.utils.rst gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) 2024-07-19 08:06:02 +00:00
ensurepip.rst gh-130160: use `.. program::` directive for documenting `ensurepip` CLI (gh-130253) 2025-02-18 12:09:22 +00:00
enum.rst Fix typo in `enum` documentation (#129920) 2025-02-09 21:48:11 +00:00
errno.rst gh-85046: Document errno constants (#126420) 2025-01-28 01:12:45 +01:00
exceptions.rst gh-129407: Clarify that a `SystemError` isn't always CPython's fault (#129410) 2025-02-03 12:46:13 +01:00
faulthandler.rst Python 3.14.0a4 2025-01-14 13:52:58 +02:00
fcntl.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
filecmp.rst Use roles :data: and :const: for referencing module variables (GH-129507) 2025-02-04 16:16:41 +02:00
fileformats.rst
fileinput.rst gh-120345: Fix incorrect use of the :class: role with the "()" suffix (GH-120347) 2024-06-12 17:23:03 +03:00
filesys.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
fnmatch.rst gh-123345: improve `fnmatch` docs (#123346) 2025-01-13 11:21:22 +01:00
fractions.rst gh-121797: Add class method Fraction.from_number() (GH-121800) 2024-10-14 07:54:59 +00:00
frameworks.rst
ftplib.rst gh-120823: Fix doc for ftplib.FTP.retrbinary() (GH-121697) 2024-07-13 16:16:26 +02:00
functional.rst
functions.rst gh-119793: Add optional length-checking to `map()` (GH-120471) 2024-11-04 15:00:19 +01:00
functools.rst gh-128650: Fix incorrect statement in partial documentation (gh-128651) 2025-01-09 13:32:00 -06:00
gc.rst GH-127010: Don't lazily track and untrack dicts (GH-127027) 2024-11-20 16:41:20 +00:00
getopt.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
getpass.rst gh-123492: Remove unnecessary `:func:` parentheses (#123493) 2024-08-30 14:34:09 +03:00
gettext.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
glob.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
graphlib.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
grp.rst gh-116622: Complete Android documentation (#124259) 2024-09-23 23:09:53 +00:00
gzip.rst gh-125260: Change the default ``gzip.compress()`` mtime to 0 (#125261) 2024-10-12 18:18:48 +01:00
hashlib-blake2-tree.png
hashlib.rst GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) 2024-09-17 02:53:38 +00:00
heapq.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
hmac.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
html.entities.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
html.parser.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
html.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
http.client.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
http.cookiejar.rst GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) 2024-09-17 02:53:38 +00:00
http.cookies.rst gh-112713 : Add support for 'partitioned' attribute in http.cookies (GH-112714) 2025-01-24 22:31:52 +00:00
http.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
http.server.rst gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518) 2024-09-01 05:59:42 +01:00
i18n.rst
idle.rst gh-130160: use `.. program::` directive for documenting `idle` CLI (#130278) 2025-02-24 02:02:34 +00:00
imaplib.rst Python 3.14.0a5 2025-02-11 19:16:29 +02:00
imghdr.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
imp.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
importlib.metadata.rst Use roles :data: and :const: for referencing module variables (GH-129507) 2025-02-04 16:16:41 +02:00
importlib.resources.abc.rst GH-121970: Replace custom abstract method directive with the ``:abstract:`` option (#129311) 2025-02-22 01:53:57 +00:00
importlib.resources.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
importlib.rst GH-121970: Replace custom abstract method directive with the ``:abstract:`` option (#129311) 2025-02-22 01:53:57 +00:00
index.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
inspect.rst Python 3.14.0a5 2025-02-11 19:16:29 +02:00
internet.rst GH-97950: Use new-style index directive ('module') (#103996) 2023-05-04 10:17:12 +02:00
intro.rst gh-116622: Complete Android documentation (#124259) 2024-09-23 23:09:53 +00:00
io.rst gh-109523: Raise a BlockingIOError if reading text from a non-blocking stream cannot immediately return bytes. (GH-122933) 2024-12-02 14:18:30 +01:00
ipaddress.rst gh-118710: Make IPv*Address.version & max_prefixlen available on the class (GH-120698) 2024-09-04 15:51:12 +02:00
ipc.rst
itertools.rst Replace non-breaking spaces with normal spaces (#130116) 2025-02-16 09:33:14 +08:00
json.rst gh-87506: Amend json.loads() post PR #127355 (#128609) 2025-01-08 09:36:44 +01:00
kde_example.png Improve kde graph with better caption and number formatting (gh-113967) 2024-01-11 18:25:18 -06:00
keyword.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
language.rst
linecache.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
locale.rst gh-126727: Fix locale.nl_langinfo(locale.ERA) (GH-126730) 2024-11-21 13:16:08 +02:00
logging.config.rst gh-124653: Relax (again) detection of queue API for logging handlers (GH-124897) 2024-10-07 19:42:19 +01:00
logging.handlers.rst gh-126400: Add TCP socket timeout to SysLogHandler to prevent blocking (GH-126716) 2025-01-29 19:37:43 +00:00
logging.rst gh-127805: Clarify Formatter initialization in logging.rst. (GH-127850) 2025-02-21 07:10:04 +00:00
lzma.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
mailbox.rst Docs: spelling and grammar fixes (#122084) 2024-07-22 09:14:25 +08:00
mailcap.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
markup.rst
marshal.rst Python 3.14.0a2 2024-11-19 16:52:44 +02:00
math.rst gh-126719: Clarify math.fmod docs (#127741) 2025-01-04 18:38:57 +01:00
mimetypes.rst gh-111637: Clarify MIME type recognition behavior in mimetypes documentation (GH-129546) 2025-02-03 16:42:12 +00:00
mm.rst
mmap.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
modulefinder.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
modules.rst
msilib.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
msvcrt.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
multiprocessing.rst gh-129948: Add `set()` to `multiprocessing.managers.SyncManager` (#129949) 2025-02-23 20:07:33 +00:00
multiprocessing.shared_memory.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
netdata.rst
netrc.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
nis.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
nntplib.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
numbers.rst GH-121970: Replace custom abstract method directive with the ``:abstract:`` option (#129311) 2025-02-22 01:53:57 +00:00
numeric.rst
operator.rst gh-115808: Add ``is_none`` and ``is_not_none`` to ``operator`` (#115814) 2024-08-10 20:16:34 +01:00
optparse.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
os.path.rst Doc: Improve wording of ``os.path.commonpath()`` (#122627) 2024-08-03 11:18:59 +00:00
os.rst GH-121970: Replace custom abstract method directive with the ``:abstract:`` option (#129311) 2025-02-22 01:53:57 +00:00
ossaudiodev.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
pathlib-inheritance.png
pathlib-inheritance.svg
pathlib.rst GH-125413: Add `pathlib.Path.info` attribute (#127730) 2025-02-08 01:16:45 +00:00
pdb.rst gh-124703: Add documentation and whatsnew entry for pdb exit change (#129818) 2025-02-07 21:02:46 -05:00
persistence.rst
pickle.rst gh-125756: Document Pickler.clear_memo() (GH-125762) 2025-02-17 17:48:29 +02:00
pickletools.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
pipes.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
pkgutil.rst gh-97850: remove ``find_loader`` and ``get_loader`` from ``pkgutil`` (#119656) 2024-11-01 18:35:22 +02:00
platform.rst gh-122549: Add platform.invalidate_caches() (#122547) 2024-11-15 13:52:56 +00:00
plistlib.rst gh-101100: Docs: Fix some typos in the document (#129988) 2025-02-11 13:06:32 +02:00
poplib.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
posix.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
pprint.rst gh-126731: Update outdated project information in `pprint.pp` doc (#126732) 2024-11-13 20:58:06 -08:00
profile.rst gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) 2024-07-19 08:06:02 +00:00
pty.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
pwd.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
py_compile.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
pyclbr.rst Format None, True, False and NotImplemented as literals (GH-118758) 2024-05-08 22:35:16 +03:00
pydoc.rst Doc: Note that pydoc uses and prefers ``MANPAGER`` (#125362) 2024-10-29 23:12:02 +00:00
pyexpat.rst Python 3.14.0a4 2025-01-14 13:52:58 +02:00
python.rst gh-119180: Documentation for PEP 649 and 749 (#122235) 2024-09-11 07:49:59 -07:00
queue.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
quopri.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
random.rst gh-123968: fix -f/--float command line option description (#124517) 2024-09-25 09:47:45 -07:00
re.rst Python 3.14.0a4 2025-01-14 13:52:58 +02:00
readline.rst gh-101100: Fix sphinx warnings in `readline.rst` (#130300) 2025-02-20 14:56:27 +02:00
removed.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
reprlib.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
resource.rst gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) 2024-07-19 08:06:02 +00:00
rlcompleter.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
runpy.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
sched.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
secrets.rst gh-123789: `secrets.randbits` returns only non-negative int (#123801) 2024-09-07 21:17:59 -07:00
security_warnings.rst gh-104773: PEP 594: Remove cgi and cgitb modules (#104775) 2023-05-24 09:04:53 +00:00
select.rst Use roles :data: and :const: for referencing module variables (GH-129507) 2025-02-04 16:16:41 +02:00
selectors.rst GH-121970: Replace custom abstract method directive with the ``:abstract:`` option (#129311) 2025-02-22 01:53:57 +00:00
shelve.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
shlex.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
shutil.rst Python 3.14.0a5 2025-02-11 19:16:29 +02:00
signal.rst gh-123014: Disable pidfd API on older Android versions (#124458) 2024-09-25 16:23:30 +02:00
site.rst Use roles :data: and :const: for referencing module variables (GH-129507) 2025-02-04 16:16:41 +02:00
smtpd.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
smtplib.rst gh-101100: Docs: Fix some typos in the document (#129988) 2025-02-11 13:06:32 +02:00
sndhdr.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
socket.rst Remove an inaccurate note from `socket.recv` (GH-129733) 2025-02-06 16:39:37 +00:00
socketserver.rst gh-64414: mention AF_INET6 and IPv6 in socketserver docs. (#129866) 2025-02-08 12:06:28 -08:00
spwd.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
sqlite3.rst Replace non-breaking spaces with normal spaces (#130116) 2025-02-16 09:33:14 +08:00
ssl.rst Use roles :data: and :const: for referencing module variables (GH-129507) 2025-02-04 16:16:41 +02:00
stat.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
statistics.rst gh-121977: Add tips for handling unhashable data (#122075) 2024-07-21 05:53:26 +00:00
stdtypes.rst Docs: Fix some semantic usages of `iterator.__iter__` (GH-130172) 2025-02-25 13:38:47 +01:00
string.rst gh-87790: support thousands separators for formatting fractional part of floats (#125304) 2025-02-25 16:27:07 +01:00
stringprep.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
struct.rst gh-121249: Support _Complex types in the struct module (#121613) 2024-10-07 13:53:02 +02:00
subprocess.rst gh-116622: Complete Android documentation (#124259) 2024-09-23 23:09:53 +00:00
sunau.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
superseded.rst gh-126180: Remove getopt and optparse deprecation notices (GH-126227) 2024-12-23 14:17:19 +10:00
symtable.rst Python 3.14.0a1 2024-10-15 22:34:54 +03:00
sys.monitoring.rst GH-122548: Implement branch taken and not taken events for sys.monitoring (GH-122564) 2024-12-19 16:59:51 +00:00
sys.rst gh-46236: Add docs for PyUnicode_GetDefaultEncoding() doc (GH-130335) 2025-02-24 15:37:21 +01:00
sys_path_init.rst GH-126985: move pyvenv.cfg detection from site to getpath (#126987) 2024-11-26 13:46:33 +00:00
sysconfig.rst gh-128696: Add arm64 to the get_platform return val description (#128701) 2025-01-11 01:03:12 +00:00
syslog.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tabnanny.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tarfile.rst gh-123492: Remove unnecessary `:func:` parentheses (#123493) 2024-08-30 14:34:09 +03:00
telnetlib.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
tempfile.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
termios.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
test.rst gh-127933: Add option to run regression tests in parallel (gh-128003) 2025-02-04 17:44:59 -05:00
text.rst
textwrap.rst docs: fix a few typos identified by codespell (#119516) 2024-05-25 18:13:31 -07:00
threading.rst gh-59705: Document OS thread name change (#128800) 2025-01-14 16:31:13 +01:00
time.rst gh-125997: suggest efficient alternatives for `time.sleep(0)` (#128752) 2025-01-18 12:02:43 +01:00
timeit.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tk.rst gh-75552: Remove deprecated tkinter.tix module (GH-104902) 2023-05-27 12:34:19 -05:00
tk_msg.png
tkinter.colorchooser.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tkinter.dnd.rst Format None, True, False and NotImplemented as literals (GH-118758) 2024-05-08 22:35:16 +03:00
tkinter.font.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tkinter.messagebox.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tkinter.rst GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) 2024-09-17 02:53:38 +00:00
tkinter.scrolledtext.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tkinter.ttk.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
token-list.inc gh-107015: Remove async_hacks from the tokenizer (#107018) 2023-07-26 16:34:15 +01:00
token.rst gh-127303: Add docs for token.EXACT_TOKEN_TYPES (#127304) 2024-11-29 04:00:50 -05:00
tokenize.rst gh-129020: Remove ambiguous sentence from `tokenize.untokenize` docs (#129021) 2025-01-20 00:05:22 +00:00
tomllib.rst Python 3.14.0a2 2024-11-19 16:52:44 +02:00
trace.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
traceback.rst gh-130250: fix regression in traceback.print_last (#130318) 2025-02-19 21:44:35 +00:00
tracemalloc.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
tty.rst Format None, True, False and NotImplemented as literals (GH-118758) 2024-05-08 22:35:16 +03:00
tulip_coro.dia
tulip_coro.png
turtle-star.pdf
turtle-star.png
turtle-star.ps
turtle.rst Python 3.14.0a5 2025-02-11 19:16:29 +02:00
types.rst gh-101100: Consolidate documentation on `ModuleType` attributes (#124709) 2024-10-09 10:53:57 +00:00
typing.rst gh-126543: Docs: change "bound type var" to "bounded" when used in the context of the 'bound' kw argument to TypeVar (#126584) 2024-11-10 16:40:25 -08:00
unicodedata.rst closes gh-124016: update Unicode to 16.0.0 (#124017) 2024-09-13 07:47:04 -07:00
unittest.mock-examples.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
unittest.mock.rst gh-130106: Fix a typo in unittest.mock doc (#130107) 2025-02-15 03:30:12 +00:00
unittest.rst gh-121970: Replace `.. coroutine{method,function}` with `:async:` (#130448) 2025-02-22 17:54:43 +00:00
unix.rst
urllib.error.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
urllib.parse.rst Added a warning to the urljoin docs, indicating that it is not safe to use with attacker controlled URLs (GH-126659) 2024-11-15 18:09:05 -05:00
urllib.request.rst gh-128192: support HTTP sha-256 digest authentication as per RFC-7617 (GH-128193) 2024-12-28 21:05:34 +00:00
urllib.robotparser.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
urllib.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
uu.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
uuid.rst gh-130461: Remove unnecessary usages of `.. index::` directives in Doc/library/uuid.rst (#130526) 2025-02-25 14:27:50 +02:00
venv.rst GH-126985: move pyvenv.cfg detection from site to getpath (#126987) 2024-11-26 13:46:33 +00:00
warnings.rst gh-125761: Clarify repeated warning suppression criteria in warnings module (gh-126326) 2024-11-02 21:37:26 +10:00
wave.rst gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518) 2024-09-01 05:59:42 +01:00
weakref.rst Docs: Standardise versionchanged text in weakref.rst (#122898) 2024-08-11 21:40:11 +01:00
webbrowser.rst gh-116622: Complete Android documentation (#124259) 2024-09-23 23:09:53 +00:00
windows.rst
winreg.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
winsound.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
wsgiref.rst gh-127522: wsgiref: indicate that `start_response` objects should follow a specific protocol (GH-127525) 2025-02-24 13:43:56 +01:00
xdrlib.rst Docs: re-create pages for removed modules to document their removal. (#126622) 2024-11-11 17:49:48 -05:00
xml.dom.minidom.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
xml.dom.pulldom.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
xml.dom.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
xml.etree.elementtree.rst Fix typo in XMLParser doc (#124129) 2024-09-20 12:42:44 +02:00
xml.rst Docs: add link roles with Sphinx extlinks (#117850) 2024-04-15 21:22:00 +03:00
xml.sax.handler.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
xml.sax.reader.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
xml.sax.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
xml.sax.utils.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
xmlrpc.client.rst Docs: Fix indents in `xmlrpc.client.rst` (#127782) 2024-12-10 19:35:00 +02:00
xmlrpc.rst gh-101100: Fix sphinx warnings in `whatsnew/3.0.rst` (#127662) 2024-12-10 12:22:37 +02:00
xmlrpc.server.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
zipapp.rst gh-123492: Remove unnecessary `:func:` parentheses (#123493) 2024-08-30 14:34:09 +03:00
zipfile.rst gh-123424: add `ZipInfo._for_archive` to set suitable default properties (#123429) 2024-12-29 18:30:53 +00:00
zipimport.rst gh-125746: Delay deprecated `zipimport.zipimporter.load_module` removal time to 3.15 (#125748) 2025-02-11 23:59:09 +00:00
zlib.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00
zoneinfo.rst docs: module page titles should not start with a link to themselves (#117099) 2024-05-08 20:34:40 +01:00