summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.14.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/whatsnew/3.14.rst')
-rw-r--r--Doc/whatsnew/3.14.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst
index b71d31f..5ce398a 100644
--- a/Doc/whatsnew/3.14.rst
+++ b/Doc/whatsnew/3.14.rst
@@ -1018,6 +1018,17 @@ New features
(Contributed by Victor Stinner in :gh:`107954`.)
+* Add a new import and export API for Python :class:`int` objects (:pep:`757`):
+
+ * :c:func:`PyLong_GetNativeLayout`;
+ * :c:func:`PyLong_Export`;
+ * :c:func:`PyLong_FreeExport`;
+ * :c:func:`PyLongWriter_Create`;
+ * :c:func:`PyLongWriter_Finish`;
+ * :c:func:`PyLongWriter_Discard`.
+
+ (Contributed by Victor Stinner in :gh:`102471`.)
+
* Add :c:func:`PyType_GetBaseByToken` and :c:data:`Py_tp_token` slot for easier
superclass identification, which attempts to resolve the `type checking issue
<https://peps.python.org/pep-0630/#type-checking>`__ mentioned in :pep:`630`