Skip to content

Commit f0e030c

Browse files
bpo-36346: Doc: Update removal schedule of legacy Unicode (GH-21479)
See PEP 623 for detail. (cherry picked from commit 270b4ad) Co-authored-by: Inada Naoki <[email protected]>
1 parent 46e448a commit f0e030c

File tree

1 file changed

+30
-9
lines changed

1 file changed

+30
-9
lines changed

Doc/c-api/unicode.rst

+30-9
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ can internally be in two states depending on how they were created:
3434
:c:type:`Py_UNICODE*` representation; you will have to call
3535
:c:func:`PyUnicode_READY` on them before calling any other API.
3636

37+
.. note::
38+
The "legacy" Unicode object will be removed in Python 3.12 with deprecated
39+
APIs. All Unicode objects will be "canonical" since then. See :pep:`623`
40+
for more information.
41+
3742

3843
Unicode Type
3944
""""""""""""
@@ -107,6 +112,9 @@ access internal read-only data of Unicode objects:
107112
108113
.. versionadded:: 3.3
109114
115+
.. deprecated-removed:: 3.10 3.12
116+
This API will be removed with :c:func:`PyUnicode_FromUnicode`.
117+
110118
111119
.. c:function:: Py_ssize_t PyUnicode_GET_LENGTH(PyObject *o)
112120
@@ -138,6 +146,9 @@ access internal read-only data of Unicode objects:
138146
139147
.. versionadded:: 3.3
140148
149+
.. deprecated-removed:: 3.10 3.12
150+
``PyUnicode_WCHAR_KIND`` is deprecated.
151+
141152
142153
.. c:function:: int PyUnicode_KIND(PyObject *o)
143154
@@ -208,7 +219,7 @@ access internal read-only data of Unicode objects:
208219
code units (this includes surrogate pairs as 2 units). *o* has to be a
209220
Unicode object (not checked).
210221
211-
.. deprecated-removed:: 3.3 4.0
222+
.. deprecated-removed:: 3.3 3.12
212223
Part of the old-style Unicode API, please migrate to using
213224
:c:func:`PyUnicode_GET_LENGTH`.
214225
@@ -218,7 +229,7 @@ access internal read-only data of Unicode objects:
218229
Return the size of the deprecated :c:type:`Py_UNICODE` representation in
219230
bytes. *o* has to be a Unicode object (not checked).
220231
221-
.. deprecated-removed:: 3.3 4.0
232+
.. deprecated-removed:: 3.3 3.12
222233
Part of the old-style Unicode API, please migrate to using
223234
:c:func:`PyUnicode_GET_LENGTH`.
224235
@@ -240,7 +251,7 @@ access internal read-only data of Unicode objects:
240251
code to use the new :c:func:`PyUnicode_nBYTE_DATA` macros or use
241252
:c:func:`PyUnicode_WRITE` or :c:func:`PyUnicode_READ`.
242253
243-
.. deprecated-removed:: 3.3 4.0
254+
.. deprecated-removed:: 3.3 3.12
244255
Part of the old-style Unicode API, please migrate to using the
245256
:c:func:`PyUnicode_nBYTE_DATA` family of macros.
246257
@@ -682,8 +693,10 @@ Extension modules can continue using them, as they will not be removed in Python
682693
string content has been filled before using any of the access macros such as
683694
:c:func:`PyUnicode_KIND`.
684695
685-
Please migrate to using :c:func:`PyUnicode_FromKindAndData`,
686-
:c:func:`PyUnicode_FromWideChar` or :c:func:`PyUnicode_New`.
696+
.. deprecated-removed:: 3.3 3.12
697+
Part of the old-style Unicode API, please migrate to using
698+
:c:func:`PyUnicode_FromKindAndData`, :c:func:`PyUnicode_FromWideChar`, or
699+
:c:func:`PyUnicode_New`.
687700
688701
689702
.. c:function:: Py_UNICODE* PyUnicode_AsUnicode(PyObject *unicode)
@@ -696,9 +709,10 @@ Extension modules can continue using them, as they will not be removed in Python
696709
embedded null code points, which would cause the string to be truncated when
697710
used in most C functions.
698711
699-
Please migrate to using :c:func:`PyUnicode_AsUCS4`,
700-
:c:func:`PyUnicode_AsWideChar`, :c:func:`PyUnicode_ReadChar` or similar new
701-
APIs.
712+
.. deprecated-removed:: 3.3 3.12
713+
Part of the old-style Unicode API, please migrate to using
714+
:c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsWideChar`,
715+
:c:func:`PyUnicode_ReadChar` or similar new APIs.
702716
703717
.. deprecated-removed:: 3.3 3.10
704718
@@ -720,6 +734,11 @@ Extension modules can continue using them, as they will not be removed in Python
720734
721735
.. versionadded:: 3.3
722736
737+
.. deprecated-removed:: 3.3 3.12
738+
Part of the old-style Unicode API, please migrate to using
739+
:c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsWideChar`,
740+
:c:func:`PyUnicode_ReadChar` or similar new APIs.
741+
723742
724743
.. c:function:: Py_UNICODE* PyUnicode_AsUnicodeCopy(PyObject *unicode)
725744
@@ -740,7 +759,9 @@ Extension modules can continue using them, as they will not be removed in Python
740759
Return the size of the deprecated :c:type:`Py_UNICODE` representation, in
741760
code units (this includes surrogate pairs as 2 units).
742761
743-
Please migrate to using :c:func:`PyUnicode_GetLength`.
762+
.. deprecated-removed:: 3.3 3.12
763+
Part of the old-style Unicode API, please migrate to using
764+
:c:func:`PyUnicode_GET_LENGTH`.
744765
745766
746767
.. c:function:: PyObject* PyUnicode_FromObject(PyObject *obj)

0 commit comments

Comments
 (0)