10000 gh-84436: update docs on Py_None/Py_True/Py_False/Py_Ellipsis becoming immortal by iritkatriel · Pull Request #105195 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-84436: update docs on Py_None/Py_True/Py_False/Py_Ellipsis becoming immortal #105195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Maybe fix the links.
  • Loading branch information
iritkatriel authored Jun 5, 2023
commit 864ed5d40e37c9a15a3e85e982b6dd2fbbcf68cd
4 changes: 2 additions & 2 deletions Doc/c-api/bool.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ are available, however.
.. c:var:: PyObject* Py_False

The Python ``False`` object. This object has no methods and is
`immortal.<https://peps.python.org/pep-0683/>`_
`immortal <https://peps.python.org/pep-0683/>`_.

.. versionchanged:: 3.12
:c:data:`Py_False` is immortal.
Expand All @@ -29,7 +29,7 @@ are available, however.
.. c:var:: PyObject* Py_True

The Python ``True`` object. This object has no methods and is
`immortal.<https://peps.python.org/pep-0683/>`_
`immortal <https://peps.python.org/pep-0683/>`_.

.. versionchanged:: 3.12
:c:data:`Py_True` is immortal.
Expand Down
2 changes: 1 addition & 1 deletion Doc/c-api/none.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ same reason.
.. c:var:: PyObject* Py_None

The Python ``None`` object, denoting lack of value. This object has no methods
and is `immortal.<https://peps.python.org/pep-0683/>`_.
and is `immortal <https://peps.python.org/pep-0683/>`_.

.. versionchanged:: 3.12
:c:data:`Py_None` is immortal.
Expand Down
2 changes: 1 addition & 1 deletion Doc/c-api/slice.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Ellipsis Object
.. c:var:: PyObject *Py_Ellipsis

The Python ``Ellipsis`` object. This object has no methods. Like
:c:data:`Py_None` it is an `immortal<https://peps.python.org/pep-0683/>`_
:c:data:`Py_None` it is an `immortal <https://peps.python.org/pep-0683/>`_.
singleton object.

.. versionchanged:: 3.12
Expand Down
0