@@ -34,6 +34,11 @@ can internally be in two states depending on how they were created:
34
34
:c:type: `Py_UNICODE* ` representation; you will have to call
35
35
:c:func: `PyUnicode_READY ` on them before calling any other API.
36
36
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
+
37
42
38
43
Unicode Type
39
44
""""""""""""
@@ -107,6 +112,9 @@ access internal read-only data of Unicode objects:
107
112
108
113
.. versionadded :: 3.3
109
114
115
+ .. deprecated-removed :: 3.10 3.12
116
+ This API will be removed with :c:func: `PyUnicode_FromUnicode `.
117
+
110
118
111
119
.. c :function :: Py_ssize_t PyUnicode_GET_LENGTH (PyObject *o)
112
120
@@ -138,6 +146,9 @@ access internal read-only data of Unicode objects:
138
146
139
147
.. versionadded :: 3.3
140
148
149
+ .. deprecated-removed :: 3.10 3.12
150
+ ``PyUnicode_WCHAR_KIND `` is deprecated.
151
+
141
152
142
153
.. c :function :: int PyUnicode_KIND (PyObject *o)
143
154
@@ -208,7 +219,7 @@ access internal read-only data of Unicode objects:
208
219
code units (this includes surrogate pairs as 2 units). *o* has to be a
209
220
Unicode object (not checked).
210
221
211
- .. deprecated-removed:: 3.3 4.0
222
+ .. deprecated-removed:: 3.3 3.12
212
223
Part of the old-style Unicode API, please migrate to using
213
224
:c:func:`PyUnicode_GET_LENGTH`.
214
225
@@ -218,7 +229,7 @@ access internal read-only data of Unicode objects:
218
229
Return the size of the deprecated :c:type: `Py_UNICODE ` representation in
219
230
bytes. *o * has to be a Unicode object (not checked).
220
231
221
- .. deprecated-removed:: 3.3 4.0
232
+ .. deprecated-removed:: 3.3 3.12
222
233
Part of the old-style Unicode API, please migrate to using
223
234
:c:func:`PyUnicode_GET_LENGTH`.
224
235
@@ -240,7 +251,7 @@ access internal read-only data of Unicode objects:
240
251
code to use the new :c:func:`PyUnicode_nBYTE_DATA` macros or use
241
252
:c:func:`PyUnicode_WRITE` or :c:func:`PyUnicode_READ`.
242
253
243
- .. deprecated-removed:: 3.3 4.0
254
+ .. deprecated-removed:: 3.3 3.12
244
255
Part of the old-style Unicode API, please migrate to using the
245
256
:c:func:`PyUnicode_nBYTE_DATA` family of macros.
246
257
@@ -682,8 +693,10 @@ Extension modules can continue using them, as they will not be removed in Python
682
693
string content has been filled before using any of the access macros such as
683
694
:c:func: `PyUnicode_KIND `.
684
695
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 `.
687
700
688
701
689
702
.. 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
696
709
embedded null code points, which would cause the string to be truncated when
697
710
used in most C functions.
698
711
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.
702
716
703
717
.. deprecated-removed :: 3.3 3.10
704
718
@@ -720,6 +734,11 @@ Extension modules can continue using them, as they will not be removed in Python
720
734
721
735
.. versionadded:: 3.3
722
736
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
+
723
742
724
743
.. c:function:: Py_UNICODE* PyUnicode_AsUnicodeCopy(PyObject *unicode)
725
744
@@ -740,7 +759,9 @@ Extension modules can continue using them, as they will not be removed in Python
740
759
Return the size of the deprecated :c:type: `Py_UNICODE ` representation, in
741
760
code units (this includes surrogate pairs as 2 units).
742
761
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`.
744
765
745
766
746
767
.. c:function:: PyObject* PyUnicode_FromObject(PyObject *obj)
0 commit comments