summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.12.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2023-10-11 05:34:38 (GMT)
committerGitHub <noreply@github.com>2023-10-11 05:34:38 (GMT)
commit3dd593e2f2527e199ff7401308131e6888f0cf6c (patch)
treee3f3435a6cca5560cbf7e04397db083a8e39ef28 /Doc/whatsnew/3.12.rst
parentb5f7777cb3ecae02d49e0b348968c1ff1ffe21f4 (diff)
downloadcpython-3dd593e2f2527e199ff7401308131e6888f0cf6c.zip
cpython-3dd593e2f2527e199ff7401308131e6888f0cf6c.tar.gz
cpython-3dd593e2f2527e199ff7401308131e6888f0cf6c.tar.bz2
gh-110631: fix wrong indentation in the `Doc/whatsnew` dir (#110632)
Fix wrong indentation in the Doc/whatsnew dir.
Diffstat (limited to 'Doc/whatsnew/3.12.rst')
-rw-r--r--Doc/whatsnew/3.12.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index 78ebe6e..dc0cc82 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -2398,15 +2398,15 @@ Removed
* Legacy Unicode APIs have been removed. See :pep:`623` for detail.
- * :c:macro:`!PyUnicode_WCHAR_KIND`
- * :c:func:`!PyUnicode_AS_UNICODE`
- * :c:func:`!PyUnicode_AsUnicode`
- * :c:func:`!PyUnicode_AsUnicodeAndSize`
- * :c:func:`!PyUnicode_AS_DATA`
- * :c:func:`!PyUnicode_FromUnicode`
- * :c:func:`!PyUnicode_GET_SIZE`
- * :c:func:`!PyUnicode_GetSize`
- * :c:func:`!PyUnicode_GET_DATA_SIZE`
+ * :c:macro:`!PyUnicode_WCHAR_KIND`
+ * :c:func:`!PyUnicode_AS_UNICODE`
+ * :c:func:`!PyUnicode_AsUnicode`
+ * :c:func:`!PyUnicode_AsUnicodeAndSize`
+ * :c:func:`!PyUnicode_AS_DATA`
+ * :c:func:`!PyUnicode_FromUnicode`
+ * :c:func:`!PyUnicode_GET_SIZE`
+ * :c:func:`!PyUnicode_GetSize`
+ * :c:func:`!PyUnicode_GET_DATA_SIZE`
* Remove the ``PyUnicode_InternImmortal()`` function macro.
(Contributed by Victor Stinner in :gh:`85858`.)