diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2022-10-04 23:26:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 23:26:14 (GMT) |
commit | a0f5599aac2037da715d09733e0a83a9cba7c37a (patch) | |
tree | cc5a1fc351eadd5f47bf1b52ee8ba9ff355f8f7f /Doc/whatsnew/3.11.rst | |
parent | fa59bda8d30ea0b6c19007205b57c800c944304c (diff) | |
download | cpython-a0f5599aac2037da715d09733e0a83a9cba7c37a.zip cpython-a0f5599aac2037da715d09733e0a83a9cba7c37a.tar.gz cpython-a0f5599aac2037da715d09733e0a83a9cba7c37a.tar.bz2 |
gh-93738: Documentation C syntax (Use `c:struct`) (#97772)
Use `c:struct`
Diffstat (limited to 'Doc/whatsnew/3.11.rst')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 173580d..f7e63ec 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1880,7 +1880,7 @@ Porting to Python 3.11 fields of the result from the exception instance (the ``value`` field). (Contributed by Irit Katriel in :issue:`45711`.) -* :c:type:`_frozen` has a new ``is_package`` field to indicate whether +* :c:struct:`_frozen` has a new ``is_package`` field to indicate whether or not the frozen module is a package. Previously, a negative value in the ``size`` field was the indicator. Now only non-negative values be used for ``size``. |