diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-12-04 09:09:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 09:09:06 (GMT) |
commit | dee7beeb4f9d28fec945c8c495027cc22a512328 (patch) | |
tree | c41df7d57757f57cdd2f74a0fbd10925315508f4 /Python/sysmodule.c | |
parent | 0e732d0997cff08855d98c17af4dd5527f10e419 (diff) | |
download | cpython-dee7beeb4f9d28fec945c8c495027cc22a512328.zip cpython-dee7beeb4f9d28fec945c8c495027cc22a512328.tar.gz cpython-dee7beeb4f9d28fec945c8c495027cc22a512328.tar.bz2 |
bpo-34392: Add sys. _is_interned() (GH-8755)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index c17de44..46878c7 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -989,6 +989,23 @@ sys_intern_impl(PyObject *module, PyObject *s) } +/*[clinic input] +sys._is_interned -> bool + + string: unicode + / + +Return True if the given string is "interned". +[clinic start generated code]*/ + +static int +sys__is_interned_impl(PyObject *module, PyObject *string) +/*[clinic end generated code: output=c3678267b4e9d7ed input=039843e17883b606]*/ +{ + return PyUnicode_CHECK_INTERNED(string); +} + + /* * Cached interned string objects used for calling the profile and * trace functions. @@ -2462,6 +2479,7 @@ static PyMethodDef sys_methods[] = { SYS_GETWINDOWSVERSION_METHODDEF SYS__ENABLELEGACYWINDOWSFSENCODING_METHODDEF SYS_INTERN_METHODDEF + SYS__IS_INTERNED_METHODDEF SYS_IS_FINALIZING_METHODDEF SYS_MDEBUG_METHODDEF SYS_SETSWITCHINTERVAL_METHODDEF |