mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
bpo-41692: Deprecate PyUnicode_InternImmortal() (GH-22486)
The PyUnicode_InternImmortal() function is now deprecated and will be removed in Python 3.12: use PyUnicode_InternInPlace() instead.
This commit is contained in:
parent
497126f7ea
commit
583ee5a5b1
4 changed files with 24 additions and 1 deletions
|
@ -261,11 +261,14 @@ PyAPI_FUNC(PyObject *) PyUnicode_FromFormat(
|
|||
);
|
||||
|
||||
PyAPI_FUNC(void) PyUnicode_InternInPlace(PyObject **);
|
||||
PyAPI_FUNC(void) PyUnicode_InternImmortal(PyObject **);
|
||||
PyAPI_FUNC(PyObject *) PyUnicode_InternFromString(
|
||||
const char *u /* UTF-8 encoded string */
|
||||
);
|
||||
|
||||
// PyUnicode_InternImmortal() is deprecated since Python 3.10
|
||||
// and will be removed in Python 3.12. Use PyUnicode_InternInPlace() instead.
|
||||
Py_DEPRECATED(3.10) PyAPI_FUNC(void) PyUnicode_InternImmortal(PyObject **);
|
||||
|
||||
/* Use only if you know it's a string */
|
||||
#define PyUnicode_CHECK_INTERNED(op) \
|
||||
(((PyASCIIObject *)(op))->state.interned)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue