Skip to content

Commit

Permalink
[3.13] gh-120426: Reword the glossary term "immortal" (GH-123191) (#1…
Browse files Browse the repository at this point in the history
…23491)

gh-120426: Reword the glossary term "immortal" (GH-123191)

Reword the glossary term "immortal", mark it as an implementation detail

(cherry picked from commit 6754566)
  • Loading branch information
encukou authored Sep 2, 2024
1 parent ab29053 commit 1af74fa
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Doc/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -590,14 +590,12 @@ Glossary
which ships with the standard distribution of Python.

immortal
If an object is immortal, its reference count is never modified, and
therefore it is never deallocated.
*Immortal objects* are a CPython implementation detail introduced
in :pep:`683`.

Built-in strings and singletons are immortal objects. For example,
:const:`True` and :const:`None` singletons are immmortal.

See `PEP 683 – Immortal Objects, Using a Fixed Refcount
<https://peps.python.org/pep-0683/>`_ for more information.
If an object is immortal, its :term:`reference count` is never modified,
and therefore it is never deallocated while the interpreter is running.
For example, :const:`True` and :const:`None` are immortal in CPython.

immutable
An object with a fixed value. Immutable objects include numbers, strings and
Expand Down

0 comments on commit 1af74fa

Please sign in to comment.