diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-04-18 14:18:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-18 14:18:27 (GMT) |
commit | 8c54c3dacccb12a712acaa48d86a54f9ee9e37b5 (patch) | |
tree | 429abc799a7e0e6269fb2bec5c607c69809bc850 /Include | |
parent | a29f858124bc698f6604716b73306c65b63b5054 (diff) | |
download | cpython-8c54c3dacccb12a712acaa48d86a54f9ee9e37b5.zip cpython-8c54c3dacccb12a712acaa48d86a54f9ee9e37b5.tar.gz cpython-8c54c3dacccb12a712acaa48d86a54f9ee9e37b5.tar.bz2 |
gh-91576: Speed up iteration of strings (#91574)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_unicodeobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/internal/pycore_unicodeobject.h b/Include/internal/pycore_unicodeobject.h index c7f0605..75b9050 100644 --- a/Include/internal/pycore_unicodeobject.h +++ b/Include/internal/pycore_unicodeobject.h @@ -20,6 +20,7 @@ extern void _PyUnicode_Fini(PyInterpreterState *); extern void _PyUnicode_FiniTypes(PyInterpreterState *); extern void _PyStaticUnicode_Dealloc(PyObject *); +extern PyTypeObject _PyUnicodeASCIIIter_Type; /* other API */ |