Skip to content

Commit 174ff29

Browse files
committed
Address review
1 parent 4e066a2 commit 174ff29

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

peps/pep-0780.rst

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Status: Draft
88
Type: Standards Track
99
Topic: Packaging
1010
Created: 21-Mar-2025
11-
Python-Version: 3.14
11+
Python-Version: 3.15
1212
Post-History:
1313
`05-Aug-2024 <https://discuss.python.org/t/60007>`__,
1414
`26-Mar-2025 <https://discuss.python.org/t/86013>`__,
@@ -158,8 +158,8 @@ that are restricted to particular interpreters MUST NOT be provided by other
158158
interpreters.
159159

160160
In Python 3.15 and later, the ABI features are determined by the new
161-
``sys.abi_info`` attribute. In earlier Python versions, the ABI features are
162-
the same as for Python 3.15 and given as follows:
161+
:external+py3.15:py:data:`sys.abi_info` attribute. In earlier Python versions,
162+
the ABI features are the same as for Python 3.15 and given as follows:
163163

164164
``pointer_bits``
165165
The bitness of the interpreter, that is, the number of bits in a pointer,
@@ -170,10 +170,8 @@ the same as for Python 3.15 and given as follows:
170170
``True``, otherwise it MUST be ``False``.
171171

172172
``debug`` (only CPython)
173-
This ABI feature is reserved for the ``--with-pydebug`` build of CPython.
174-
If the interpreter is a CPython interpreter with ``Py_DEBUG`` capabilities,
175-
the ``debug`` feature MUST be ``True``. On POSIX systems, this corresponds
176-
to the Python expression ``"d" in sys.abiflags``.
173+
This ABI feature corresponds to the
174+
:external+py3.15:py:attr:`sys.abi_info.debug` field.
177175

178176
``byteorder``
179177
Indicates the byte order of the interpreter. The value MUST be either
@@ -182,7 +180,7 @@ the same as for Python 3.15 and given as follows:
182180
.. _pep-780-sys_abi_info:
183181

184182
The ``sys_abi_info`` Environment Marker
185-
-------------------------------------------
183+
---------------------------------------
186184

187185
To make ABI features available in dependency specifications, a new environment
188186
marker variable, ``sys_abi_info``, is added to the format of dependency

0 commit comments

Comments
 (0)