commit | e92ac0a741b125f1cffe8c07b054d1dea7b0a05a | [log] [tgz] |
---|---|---|
author | Inada Naoki <songofacandy@gmail.com> | Mon May 29 08:31:03 2023 |
committer | GitHub <noreply@github.com> | Mon May 29 08:31:03 2023 |
tree | bbe1d62c1ae22d1662e5b067cdfee9baa2a154b3 | |
parent | 595ffddb33e95d8fa11999ddb873d08e3565d2eb [diff] |
Fix compiler warning in unicodeobject.c (#105050)
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index ec5684b..6f25f91 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -236,7 +236,7 @@ } Py_ssize_t -_PyUnicode_InternedSize() +_PyUnicode_InternedSize(void) { return PyObject_Length(get_interned_dict(_PyInterpreterState_GET())); }