mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +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
|
@ -15764,6 +15764,15 @@ PyUnicode_InternInPlace(PyObject **p)
|
|||
void
|
||||
PyUnicode_InternImmortal(PyObject **p)
|
||||
{
|
||||
if (PyErr_WarnEx(PyExc_DeprecationWarning,
|
||||
"PyUnicode_InternImmortal() is deprecated; "
|
||||
"use PyUnicode_InternInPlace() instead", 1) < 0)
|
||||
{
|
||||
// The function has no return value, the exception cannot
|
||||
// be reported to the caller, so just log it.
|
||||
PyErr_WriteUnraisable(NULL);
|
||||
}
|
||||
|
||||
PyUnicode_InternInPlace(p);
|
||||
if (PyUnicode_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) {
|
||||
_PyUnicode_STATE(*p).interned = SSTATE_INTERNED_IMMORTAL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue