diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-04 23:38:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 23:38:39 (GMT) |
commit | f879297b862ff8a566f732c337b711f0a31aa96b (patch) | |
tree | 573883af70649eb72354c2830e200e73ee03ac36 | |
parent | a980dafd2cd414d17a4f94fc662c448bd8226964 (diff) | |
download | cpython-f879297b862ff8a566f732c337b711f0a31aa96b.zip cpython-f879297b862ff8a566f732c337b711f0a31aa96b.tar.gz cpython-f879297b862ff8a566f732c337b711f0a31aa96b.tar.bz2 |
[3.10] gh-93738: Documentation C syntax (:c:type:`Py_UNICODE*` -> :c:expr:`Py_UNICODE*`) (GH-97784) (#97858)
:c:type:`Py_UNICODE*` -> :c:expr:`Py_UNICODE*`
(cherry picked from commit a081cae2a2cd1248ad067c3f7dc218ea7e3d203a)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 2d78f81..609370b 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -2267,7 +2267,7 @@ The :c:type:`Py_UNICODE` has been deprecated by :pep:`393` and will be removed in Python 4. All functions using this type are deprecated: Unicode functions and methods using :c:type:`Py_UNICODE` and -:c:type:`Py_UNICODE*` types: +:c:expr:`Py_UNICODE*` types: * :c:macro:`PyUnicode_FromUnicode`: use :c:func:`PyUnicode_FromWideChar` or :c:func:`PyUnicode_FromKindAndData` |