cpython/Doc/library
Miss Islington (bot) 02cd3ce0f2
[3.13] gh-116510: Fix a Crash Due to Shared Immortal Interned Strings (gh-124865) (gh-125709) (GH-125204)
* gh-116510: Fix a Crash Due to Shared Immortal Interned Strings (gh-124865)

Fix a crash caused by immortal interned strings being shared between
sub-interpreters that use basic single-phase init. In that case, the string
can be used by an interpreter that outlives the interpreter that created and
interned it. For interpreters that share obmalloc state, also share the
interned dict with the main interpreter.

This is an un-revert of gh-124646 that then addresses the Py_TRACE_REFS
failures identified by gh-124785.
(cherry picked from commit f2cb399470)

Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>

* [3.13] gh-125286: Share the Main Refchain With Legacy Interpreters (gh-125709)

They used to be shared, before 3.12.  Returning to sharing them resolves a failure on Py_TRACE_REFS builds.

---------

Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
2024-11-12 13:45:12 +01:00
..
__future__.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
__main__.rst [3.13] gh-90437: Fix __main__.py documentation wording (GH-116309) (#121385) 2024-07-04 23:05:02 +00:00
_thread.rst [3.13] gh-125058: update _thread docs regarding interruptibility of lock.acquire() (GH-125141) (#125306) 2024-10-11 08:20:46 +00:00
abc.rst [3.13] gh-101100: Add a table of class attributes to the "Custom classes" section of the data model docs (#124480) (#124556) 2024-09-25 17:29:48 -07:00
allos.rst gh-118689: Doc: fix ePub build (GH-118690) 2024-05-10 10:40:35 +00:00
archiving.rst
argparse.rst [3.13] gh-126071: Improve formatting of the argparse documentation (GH-126073) (GH-126173) 2024-10-30 09:21:38 +00:00
array.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
ast.rst [3.13] gh-101100: Consolidate documentation on ModuleType attributes (#124709) (#125208) 2024-10-09 20:03:30 +01:00
asyncio-api-index.rst
asyncio-dev.rst
asyncio-eventloop.rst Update documentation links to Microsoft's documentation pages (GH-126379) 2024-11-11 17:18:01 +00:00
asyncio-exceptions.rst
asyncio-extending.rst
asyncio-future.rst [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106) 2024-07-22 01:30:34 +00:00
asyncio-llapi-index.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
asyncio-platforms.rst
asyncio-policy.rst
asyncio-protocol.rst
asyncio-queue.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
asyncio-runner.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
asyncio-stream.rst gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723) 2024-04-11 07:41:55 -07:00
asyncio-subprocess.rst
asyncio-sync.rst
asyncio-task.rst [3.13] gh-125289: Update sample code in asyncio-task.rst (GH-125292) (GH-125374) 2024-10-12 20:43:30 +00:00
asyncio.rst [3.13] gh-121957: Emit audit events for python -i and python -m asyncio (GH-121958) (GH-122115) 2024-07-22 13:36:57 +02:00
atexit.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
audit_events.rst
base64.rst [3.13] Clarify base64.a85encode docs: *wrapcols* doesn't count the newline (GH-119409) (GH-119483) 2024-05-28 16:55:37 +02:00
bdb.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
binary.rst
binascii.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
bisect.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
builtins.rst [3.13] gh-99030: Added documentation links for types and exceptions (GH-123857) (#125764) 2024-10-21 00:42:06 +00:00
bz2.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
calendar.rst [3.13] gh-123445: calendar: Improve descriptions for day and month attributes (GH-123483) (#124500) 2024-09-25 17:13:14 -07:00
cmath.rst [3.13] gh-126165: Improve docs of function math.isclose (GH-126215) (#126380) 2024-11-04 04:14:05 +00:00
cmd.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
cmdline.rst [3.13] gh-123834: Add symtable to the list of modules with a CLI (GH-123835) (#123862) 2024-09-24 11:20:48 -07:00
code.rst [3.13] gh-74929: PEP 667 general docs update (gh-119291) 2024-05-21 21:35:26 +10:00
codecs.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
codeop.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
collections.abc.rst [3.13] gh-123523: Rework typing documentation for generators and coroutines, and link to it from collections.abc docs (GH-123544) (#123790) 2024-09-06 22:56:37 +02:00
collections.rst [3.13] gh-119004: fix a crash in equality testing between OrderedDict (GH-121329) (#124507) 2024-09-27 11:34:48 -07:00
colorsys.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
compileall.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
concurrency.rst
concurrent.futures.rst [3.13] Doc: Fix typos (GH-125728) (#125773) 2024-10-21 08:49:31 +00:00
concurrent.rst
configparser.rst [3.13] gh-125436: Doc: Add missing `allow_unnamed_section parameter to ConfigParser` documentation (GH-125437) (#126421) 2024-11-05 03:04:32 +00:00
constants.rst [3.13] gh-103066: Add links and help in site.py constants (GH-103777) (#123762) 2024-09-06 11:08:29 +03:00
contextlib.rst [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106) 2024-07-22 01:30:34 +00:00
contextvars.rst [3.13] gh-124872: Refine contextvars documentation (GH-124773) (#125233) 2024-10-30 20:48:02 +00:00
copy.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
copyreg.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
crypto.rst
csv.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
ctypes.rst [3.13] gh-120313: amend documentation regarding ctypes._CFuncPtr (GH-120989) (GH-125979) 2024-10-28 14:20:58 +01:00
curses.ascii.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
curses.panel.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
curses.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
custominterp.rst
dataclasses.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
datatypes.rst
datetime.rst [3.13] gh-85453: Improve variable mark up for datetime.rst (GH-120702) (#125490) 2024-10-14 22:08:30 +00:00
dbm.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
debug.rst
decimal.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
development.rst
devmode.rst
dialog.rst
difflib.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
dis.rst [3.13] Doc: Fix typo in documentation for `MAKE_FUNCTION` opcode (GH-126396) (#126406) 2024-11-04 17:35:12 +00:00
distribution.rst
doctest.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.charset.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.compat32-message.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
email.contentmanager.rst [3.13] gh-101100: Add a table of class attributes to the "Custom classes" section of the data model docs (#124480) (#124556) 2024-09-25 17:29:48 -07:00
email.encoders.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.errors.rst [3.13] gh-121650: Encode newlines in headers, and verify headers are sound (GH-122233) (#122484) 2024-08-06 19:06:41 +02:00
email.examples.rst
email.generator.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.header.rst [3.13] gh-120276: Fix incorrect email.header.Header maxlinelen default (GH-120277) (GH-120279) 2024-06-08 17:37:50 +00:00
email.headerregistry.rst [3.13] gh-101100: Add a table of class attributes to the "Custom classes" section of the data model docs (#124480) (#124556) 2024-09-25 17:29:48 -07:00
email.iterators.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.message.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
email.mime.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.parser.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.policy.rst [3.13] gh-121650: Encode newlines in headers, and verify headers are sound (GH-122233) (#122484) 2024-08-06 19:06:41 +02:00
email.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
email.utils.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
ensurepip.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
enum.rst [3.13] docs: add a more precise example in enum doc (GH-121015) (#126306) 2024-11-01 16:17:35 -07:00
errno.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
exceptions.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
faulthandler.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
fcntl.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
filecmp.rst [3.13] gh-57141: Make shallow argument to filecmp.dircmp keyword-only (GH-121767) (#121777) 2024-07-14 23:17:26 +00:00
fileformats.rst
fileinput.rst [3.13] gh-120345: Fix incorrect use of the :class: role with the "()" suffix (GH-120347) (GH-120411) 2024-06-12 14:51:35 +00:00
filesys.rst
fnmatch.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
fractions.rst [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106) 2024-07-22 01:30:34 +00:00
frameworks.rst
ftplib.rst [3.13] gh-120823: Fix doc for ftplib.FTP.retrbinary() (GH-121697) (GH-121707) 2024-07-13 14:45:32 +00:00
functional.rst
functions.rst [3.13] gh-60712: Include the "object" type in the lists of documented types (GH-103036) (GH-126197) 2024-10-30 13:16:38 -07:00
functools.rst [3.13] gh-90190: Add doc for using singledispatch with precise collection type hints (GH-116544) (#124710) 2024-09-27 21:28:30 +00:00
gc.rst [3.13] GH-124567: Revert the Incremental GC in 3.13 (#124770) 2024-09-30 21:27:29 +00:00
getopt.rst [3.13] Docs: turn getopt examples into doctests (GH-126377) (#126385) 2024-11-04 08:34:36 +00:00
getpass.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
gettext.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
glob.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
graphlib.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
grp.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
gzip.rst [3.13] gh-112346: Document the OS byte in gzip.compress output change in 3.11 (GH-120480) (#120612) 2024-06-17 06:06:11 +00:00
hashlib-blake2-tree.png
hashlib.rst [3.13] GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) (#124151) 2024-09-24 00:43:04 +00:00
heapq.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
hmac.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
html.entities.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
html.parser.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
html.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
http.client.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
http.cookiejar.rst [3.13] GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) (#124151) 2024-09-24 00:43:04 +00:00
http.cookies.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
http.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
http.server.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
i18n.rst
idle.rst [3.13] Docs: fix typos in documentation (GH-118752) (#118787) 2024-05-08 19:24:39 +00:00
imaplib.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
importlib.metadata.rst [3.13] Fix incorrect indentation in importlib.metadata.rst (GH-126189) (GH-126193) 2024-10-30 11:00:29 -07:00
importlib.resources.abc.rst [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106) 2024-07-22 01:30:34 +00:00
importlib.resources.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
importlib.rst [3.13] gh-101100: Consolidate documentation on ModuleType attributes (#124709) (#125208) 2024-10-09 20:03:30 +01:00
index.rst
inspect.rst [3.13] gh-101100: Add a table of class attributes to the "Custom classes" section of the data model docs (#124480) (#124556) 2024-09-25 17:29:48 -07:00
internet.rst
intro.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
io.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
ipaddress.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
ipc.rst
itertools.rst [3.13] Misc improvements to the itertools docs (gh-125147) (gh-125149) 2024-10-08 14:37:13 -05:00
json.rst [3.13] GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) (#124151) 2024-09-24 00:43:04 +00:00
kde_example.png
keyword.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
language.rst
linecache.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
locale.rst [3.13] gh-124969: Make locale.nl_langinfo(locale.ALT_DIGITS) returning a string again (GH-125774) (GH-125804) 2024-10-21 19:30:23 +00:00
logging.config.rst [3.13] gh-124653: Relax (again) detection of queue API for logging handlers (GH-124897) (GH-125059) 2024-10-08 07:23:40 +01:00
logging.handlers.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
logging.rst [3.13] gh-101100: Add a table of class attributes to the "Custom classes" section of the data model docs (#124480) (#124556) 2024-09-25 17:29:48 -07:00
lzma.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
mailbox.rst [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106) 2024-07-22 01:30:34 +00:00
markup.rst
marshal.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
math.rst [3.13] gh-126165: Improve docs of function math.isclose (GH-126215) (#126380) 2024-11-04 04:14:05 +00:00
mimetypes.rst [3.13] Document `mimetypes.MimeTypes.add_type()` (GH-122301) (#122328) 2024-07-26 22:20:01 +00:00
mm.rst
mmap.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
modulefinder.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
modules.rst
msvcrt.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
multiprocessing.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
multiprocessing.shared_memory.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
netdata.rst
netrc.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
numbers.rst [3.13] docs: fix a few typos identified by codespell (GH-119516) (#119570) 2024-05-26 08:20:37 +00:00
numeric.rst
operator.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
optparse.rst [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106) 2024-07-22 01:30:34 +00:00
os.path.rst [3.13] Doc: Improve wording of `os.path.commonpath()` (GH-122627) (#122641) 2024-08-03 14:25:26 +01:00
os.rst gh-125298: Remove misleading text in os.kill documentation (GH-125749) 2024-11-08 15:47:52 +00:00
pathlib-inheritance.png
pathlib-inheritance.svg
pathlib.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
pdb.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
persistence.rst
pickle.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
pickletools.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
pkgutil.rst [3.13] gh-101100: Consolidate documentation on ModuleType attributes (#124709) (#125208) 2024-10-09 20:03:30 +01:00
platform.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
plistlib.rst [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106) 2024-07-22 01:30:34 +00:00
poplib.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
posix.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
pprint.rst [3.13] gh-115986 Improve pprint docs formatting (GH-117401) (GH-121098) 2024-06-28 16:23:08 +02:00
profile.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
pty.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
pwd.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
py_compile.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
pyclbr.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
pydoc.rst [3.13] Doc: Note that pydoc uses and prefers `MANPAGER` (GH-125362) (#126152) 2024-10-29 23:23:18 +00:00
pyexpat.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
python.rst
queue.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
quopri.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
random.rst [3.13] gh-123968: fix -f/--float command line option description (GH-124517) (#124523) 2024-09-25 17:16:02 -07:00
re.rst [3.13] gh-124130: Notes on empty string corner case of category \B (GH-124133) (#124328) 2024-09-23 15:50:54 -07:00
readline.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
reprlib.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
resource.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
rlcompleter.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
runpy.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
sched.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
secrets.rst [3.13] gh-123789: secrets.randbits returns only non-negative int (GH-123801) (#123830) 2024-09-24 11:21:10 -07:00
security_warnings.rst
select.rst [3.13] gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907) (GH-122012) 2024-07-19 09:13:08 +00:00
selectors.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
shelve.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
shlex.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
shutil.rst [3.13] Doc: Improve documentation for the `path argument in shutil.which()` (GH-124494) (#124497) 2024-09-25 17:12:48 -07:00
signal.rst [3.13] gh-123014: Disable pidfd API on older Android versions (GH-124458) (#124543) 2024-09-26 13:36:12 -07:00
site.rst [3.13] gh-103066: Add links and help in site.py constants (GH-103777) (#123762) 2024-09-06 11:08:29 +03:00
smtplib.rst [3.13] gh-120662: Improve smtplib example (GH-120668) (#120681) 2024-06-18 12:12:58 +00:00
socket.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
socketserver.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
sqlite3.rst [3.13] gh-126259: Fix "unclosed database" warning in sqlite3 doctest (GH-126260) (#126265) 2024-11-01 07:23:11 +00:00
ssl.rst [3.13] GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) (#124151) 2024-09-24 00:43:04 +00:00
stat.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
statistics.rst [3.13] gh-121977: Add tips for handling unhashable data (GH-122075) (#122076) 2024-07-21 06:10:06 +00:00
stdtypes.rst [3.13] gh-116938: Fix dict.update docstring and remove erraneous full stop from dict documentation (GH-125421) (#126150) 2024-10-29 23:27:33 +00:00
string.rst [3.13] gh-122767: document "new style" formatting for complexes (GH-122848) (#126128) 2024-11-01 12:29:29 -07:00
stringprep.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
struct.rst [3.13] gh-123110: correct note about _Bool in the struct module docs (GH-123111) (#123126) 2024-08-19 13:00:54 +05:30
subprocess.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
superseded.rst
symtable.rst [3.13] gh-70870: Clarify dual usage of 'free variable' (GH-122545) (#125088) 2024-10-08 17:58:47 +10:00
sys.monitoring.rst [3.13] GH-109975: Copyedit 3.13 What's New: C API (GH-124313) (#124334) 2024-09-23 11:14:13 -07:00
sys.rst [3.13] gh-116510: Fix a Crash Due to Shared Immortal Interned Strings (gh-124865) (gh-125709) (GH-125204) 2024-11-12 13:45:12 +01:00
sys_path_init.rst
sysconfig.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
syslog.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tabnanny.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tarfile.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
tempfile.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
termios.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
test.rst [3.13] gh-101100: Add a table of class attributes to the "Custom classes" section of the data model docs (#124480) (#124556) 2024-09-25 17:29:48 -07:00
text.rst
textwrap.rst [3.13] docs: fix a few typos identified by codespell (GH-119516) (#119570) 2024-05-26 08:20:37 +00:00
threading.rst [3.13] Fix typos in docs, error messages and comments (#122502) (#122606) 2024-09-02 12:44:42 +02:00
time.rst Update documentation links to Microsoft's documentation pages (GH-126379) 2024-11-11 17:18:01 +00:00
timeit.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tk.rst
tk_msg.png
tkinter.colorchooser.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tkinter.dnd.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
tkinter.font.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tkinter.messagebox.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tkinter.rst [3.13] GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) (#124151) 2024-09-24 00:43:04 +00:00
tkinter.scrolledtext.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tkinter.ttk.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
token-list.inc
token.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
tokenize.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tomllib.rst [3.13] gh-123905: Update TOML description to include version number (GH-123906) (#123908) 2024-09-24 11:15:30 -07:00
trace.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
traceback.rst [3.13] gh-71784: [doc] add usage examples for traceback.TracebackException (GH-125189) (#125247) 2024-10-10 10:46:31 +00:00
tracemalloc.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
tty.rst [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792) 2024-05-08 19:55:12 +00:00
tulip_coro.dia
tulip_coro.png
turtle-star.pdf
turtle-star.png
turtle-star.ps
turtle.rst [3.13] docs: fix a few typos identified by codespell (GH-119516) (#119570) 2024-05-26 08:20:37 +00:00
types.rst [3.13] gh-101100: Consolidate documentation on ModuleType attributes (#124709) (#125208) 2024-10-09 20:03:30 +01:00
typing.rst [3.13] gh-126543: Docs: change "bound type var" to "bounded" when used in the context of the 'bound' kw argument to TypeVar (GH-126584) (#126657) 2024-11-10 18:48:44 -08:00
unicodedata.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
unittest.mock-examples.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
unittest.mock.rst [3.13] gh-101100: Fix Sphinx warnings in library/unittest.mock.rst (GH-124106) (#125190) 2024-10-09 14:13:23 +00:00
unittest.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
unix.rst
urllib.error.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
urllib.parse.rst [3.13] gh-120522: Apply App Store compliance patch during installation (GH-121947) (#122105) 2024-07-22 08:13:34 +08:00
urllib.request.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
urllib.robotparser.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
urllib.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
uuid.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
venv.rst [3.13] docs: in venv table use executable name (GH-124315) (GH-125172) 2024-10-09 17:54:15 +01:00
warnings.rst [3.13] gh-125761: Clarify repeated warning suppression criteria in warnings module (gh-126330) 2024-11-02 11:43:30 +00:00
wave.rst [3.13] gh-123517: Remove unnecessary :meth: parentheses (gh-123518) (GH-123577) 2024-09-02 16:00:04 +02:00
weakref.rst [3.13] Docs: Standardise versionchanged text in weakref.rst (GH-122898) (#122911) 2024-08-11 20:57:19 +00:00
webbrowser.rst [3.13] gh-116622: Complete Android documentation (GH-124259) (#124395) 2024-09-24 00:13:45 +00:00
windows.rst
winreg.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
winsound.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
wsgiref.rst [3.13] Use pep role instead of url (GH-121611) (#124172) 2024-09-23 11:39:16 -07:00
xml.dom.minidom.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
xml.dom.pulldom.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
xml.dom.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
xml.etree.elementtree.rst [3.13] Fix typo in XMLParser doc (GH-124129) (#124280) 2024-09-23 15:53:10 -07:00
xml.rst Docs: add link roles with Sphinx extlinks (#117850) 2024-04-15 21:22:00 +03:00
xml.sax.handler.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
xml.sax.reader.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
xml.sax.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
xml.sax.utils.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
xmlrpc.client.rst [3.13] GH-103484: Fix permanently redirects reported by linkcheck (GH-124144) (#124151) 2024-09-24 00:43:04 +00:00
xmlrpc.rst
xmlrpc.server.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
zipapp.rst [3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513) 2024-08-30 20:14:48 +03:00
zipfile.rst [3.13] gh-119588: Update docs to reflect decision to include the change with Python 3.13 and not 3.12. (GH-120043) (#120046) 2024-06-04 15:39:49 +00:00
zipimport.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
zlib.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00
zoneinfo.rst [3.13] docs: module page titles should not start with a link to themselves (GH-117099) (#118790) 2024-05-08 19:52:39 +00:00