[Python-checkins] bpo-38644: Rephrase What's New entry (GH-18461)

Victor Stinner webhook-mailer at python.org
Tue Feb 11 11:50:15 EST 2020


https://github.com/python/cpython/commit/f3fda374685dffa31ebda9e681e00ef7032b8a1d
commit: f3fda374685dffa31ebda9e681e00ef7032b8a1d
branch: master
author: Victor Stinner <vstinner at python.org>
committer: GitHub <noreply at github.com>
date: 2020-02-11T17:50:10+01:00
summary:

bpo-38644: Rephrase What's New entry (GH-18461)

files:
M Doc/whatsnew/3.9.rst

diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 4f4c7f2808d01..c0404101d7ce2 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -356,8 +356,9 @@ Build and C API Changes
 
   * Provide :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall`
     as regular functions for the limited API. Previously, there were defined as
-    macros, but these macros didn't work with the limited API which cannot
-    access ``PyThreadState.recursion_depth`` field.
+    macros, but these macros didn't compile with the limited C API which cannot
+    access ``PyThreadState.recursion_depth`` field (the structure is opaque in
+    the limited C API).
 
   * Exclude the following functions from the limited C API:
 



More information about the Python-checkins mailing list