summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-04-18 14:18:27 (GMT)
committerGitHub <noreply@github.com>2022-04-18 14:18:27 (GMT)
commit8c54c3dacccb12a712acaa48d86a54f9ee9e37b5 (patch)
tree429abc799a7e0e6269fb2bec5c607c69809bc850 /Objects/object.c
parenta29f858124bc698f6604716b73306c65b63b5054 (diff)
downloadcpython-8c54c3dacccb12a712acaa48d86a54f9ee9e37b5.zip
cpython-8c54c3dacccb12a712acaa48d86a54f9ee9e37b5.tar.gz
cpython-8c54c3dacccb12a712acaa48d86a54f9ee9e37b5.tar.bz2
gh-91576: Speed up iteration of strings (#91574)
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 33dab5e..fe2d76f 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1936,6 +1936,7 @@ static PyTypeObject* static_types[] = {
&_PyNamespace_Type,
&_PyNone_Type,
&_PyNotImplemented_Type,
+ &_PyUnicodeASCIIIter_Type,
&_PyUnion_Type,
&_PyWeakref_CallableProxyType,
&_PyWeakref_ProxyType,