summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/object.rst49
-rw-r--r--Doc/data/stable_abi.dat2
-rw-r--r--Doc/whatsnew/3.13.rst5
3 files changed, 56 insertions, 0 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst
index 1247641..ba454db 100644
--- a/Doc/c-api/object.rst
+++ b/Doc/c-api/object.rst
@@ -6,6 +6,55 @@ Object Protocol
===============
+.. c:function:: PyObject* Py_GetConstant(unsigned int constant_id)
+
+ Get a :term:`strong reference` to a constant.
+
+ Set an exception and return ``NULL`` if *constant_id* is invalid.
+
+ *constant_id* must be one of these constant identifiers:
+
+ .. c:namespace:: NULL
+
+ ======================================== ===== =========================
+ Constant Identifier Value Returned object
+ ======================================== ===== =========================
+ .. c:macro:: Py_CONSTANT_NONE ``0`` :py:data:`None`
+ .. c:macro:: Py_CONSTANT_FALSE ``1`` :py:data:`False`
+ .. c:macro:: Py_CONSTANT_TRUE ``2`` :py:data:`True`
+ .. c:macro:: Py_CONSTANT_ELLIPSIS ``3`` :py:data:`Ellipsis`
+ .. c:macro:: Py_CONSTANT_NOT_IMPLEMENTED ``4`` :py:data:`NotImplemented`
+ .. c:macro:: Py_CONSTANT_ZERO ``5`` ``0``
+ .. c:macro:: Py_CONSTANT_ONE ``6`` ``1``
+ .. c:macro:: Py_CONSTANT_EMPTY_STR ``7`` ``''``
+ .. c:macro:: Py_CONSTANT_EMPTY_BYTES ``8`` ``b''``
+ .. c:macro:: Py_CONSTANT_EMPTY_TUPLE ``9`` ``()``
+ ======================================== ===== =========================
+
+ Numeric values are only given for projects which cannot use the constant
+ identifiers.
+
+
+ .. versionadded:: 3.13
+
+ .. impl-detail::
+
+ In CPython, all of these constants are :term:`immortal`.
+
+
+.. c:function:: PyObject* Py_GetConstantBorrowed(unsigned int constant_id)
+
+ Similar to :c:func:`Py_GetConstant`, but return a :term:`borrowed
+ reference`.
+
+ This function is primarily intended for backwards compatibility:
+ using :c:func:`Py_GetConstant` is recommended for new code.
+
+ The reference is borrowed from the interpreter, and is valid until the
+ interpreter finalization.
+ .. versionadded:: 3.13
+
+
.. c:var:: PyObject* Py_NotImplemented
The ``NotImplemented`` singleton, used to signal that an operation is
diff --git a/Doc/data/stable_abi.dat b/Doc/data/stable_abi.dat
index 9d0ad3d..565f134 100644
--- a/Doc/data/stable_abi.dat
+++ b/Doc/data/stable_abi.dat
@@ -838,6 +838,8 @@ function,Py_GenericAlias,3.9,,
var,Py_GenericAliasType,3.9,,
function,Py_GetBuildInfo,3.2,,
function,Py_GetCompiler,3.2,,
+function,Py_GetConstant,3.13,,
+function,Py_GetConstantBorrowed,3.13,,
function,Py_GetCopyright,3.2,,
function,Py_GetExecPrefix,3.2,,
function,Py_GetPath,3.2,,
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index 40e2e6a..caadf4a 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -1731,6 +1731,11 @@ New Features
more information.
(Contributed by Victor Stinner in :gh:`111696`.)
+* Add :c:func:`Py_GetConstant` and :c:func:`Py_GetConstantBorrowed` functions
+ to get constants. For example, ``Py_GetConstant(Py_CONSTANT_ZERO)`` returns a
+ :term:`strong reference` to the constant zero.
+ (Contributed by Victor Stinner in :gh:`115754`.)
+
Porting to Python 3.13
----------------------