@@ -101,20 +101,21 @@ subdirectories).
101101Debug build uses the same ABI as release build
102102-----------------------------------------------
103103
104- Python now uses the same ABI when built in release and in debug mode. On Unix,
105- when Python is build in debug mode, it is now possible to load C extensions
106- built in release mode and C extensions built using the stable ABI.
107-
108- Release build and debug build are now ABI compatible: the ``Py_DEBUG `` define
109- no longer implies the ``Py_TRACE_REFS `` define which introduces the only ABI
110- incompatibility. A new ``./configure --with-trace-refs `` build option is now
111- required to get ``Py_TRACE_REFS `` define which adds :func: `sys.getobjects `
112- function and :envvar: `PYTHONDUMPREFS ` environment variable.
104+ Python now uses the same ABI whether it built in release or debug mode. On
105+ Unix, when Python is built in debug mode, it is now possible to load C
106+ extensions built in release mode and C extensions built using the stable ABI.
107+
108+ Release builds and debug builds are now ABI compatible: defining the
109+ ``Py_DEBUG `` macro no longer implies the ``Py_TRACE_REFS `` macro, which
110+ introduces the only ABI incompatibility. The ``Py_TRACE_REFS `` macro, which
111+ adds the :func: `sys.getobjects ` function and the :envvar: `PYTHONDUMPREFS `
112+ environment variable, can be set using the new ``./configure --with-trace-refs ``
113+ build option.
113114(Contributed by Victor Stinner in :issue: `36465 `.)
114115
115- On Unix, C extensions are no longer linked to libpython. It is now possible to
116- load a C extension built using a shared library Python
117- with a statically linked Python.
116+ On Unix, C extensions are no longer linked to libpython. It is now possible
117+ for a statically linked Python to load a C extension built using a shared
118+ library Python.
118119(Contributed by Victor Stinner in :issue: `21536 `.)
119120
120121On Unix, when Python is built in debug mode, import now also looks for C
0 commit comments