diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-05 15:18:55 (GMT) |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2022-10-22 19:05:15 (GMT) |
commit | e2f7642b982e01bab7b59e59c542f5597e4bc1f0 (patch) | |
tree | b79218190c73f15ca8bfe4b8b1f38805d1a48bf6 /Misc | |
parent | 33e4537975b271570476af7c2db9226dce133da7 (diff) | |
download | cpython-e2f7642b982e01bab7b59e59c542f5597e4bc1f0.zip cpython-e2f7642b982e01bab7b59e59c542f5597e4bc1f0.tar.gz cpython-e2f7642b982e01bab7b59e59c542f5597e4bc1f0.tar.bz2 |
[3.11] gh-93738: Documentation C syntax (:c:type: to :c:expr:, misc. cases) (GH-97775) (#97873)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/3.8.0a4.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.8.0a4.rst b/Misc/NEWS.d/3.8.0a4.rst index fc952fa..5250d82 100644 --- a/Misc/NEWS.d/3.8.0a4.rst +++ b/Misc/NEWS.d/3.8.0a4.rst @@ -1354,7 +1354,7 @@ the function is called twice. .. nonce: pz-DIR .. section: C API -:c:macro:`PyDoc_VAR(name)` and :c:macro:`PyDoc_STRVAR(name,str)` now create +:c:expr:`PyDoc_VAR(name)` and :c:expr:`PyDoc_STRVAR(name,str)` now create ``static const char name[]`` instead of ``static char name[]``. Patch by Inada Naoki. |