PEP 703: Use 't' for proposed ABI tag (#3445)

This commit is contained in:
Sam Gross 2023-09-19 14:21:12 -04:00 committed by GitHub
parent 2c0c4b377c
commit c972a76923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -330,8 +330,8 @@ and python.org downloads. A new build configuration flag,
CPython with support for running without the global interpreter lock.
When built with ``--disable-gil``, CPython will define the ``Py_NOGIL``
macro in Python/patchlevel.h. The ABI tag will include the letter "n"
(for "nogil").
macro in Python/patchlevel.h. The ABI tag will include the letter "t"
(for "threading").
The ``--disable-gil`` builds of CPython will still support optionally
running with the GIL enabled at runtime (see `PYTHONGIL Environment