summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_unicodeobject.h
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-03-09 23:02:00 (GMT)
committerGitHub <noreply@github.com>2022-03-09 23:02:00 (GMT)
commit8714b6fa27271035dd6dd3514e283f92d669321d (patch)
treeab3d0c0a10753d3a28515831a22817a348b53c91 /Include/internal/pycore_unicodeobject.h
parente801e88744f34508aa338f9f7f3f3baee012f813 (diff)
downloadcpython-8714b6fa27271035dd6dd3514e283f92d669321d.zip
cpython-8714b6fa27271035dd6dd3514e283f92d669321d.tar.gz
cpython-8714b6fa27271035dd6dd3514e283f92d669321d.tar.bz2
bpo-46881: Statically allocate and initialize the latin1 characters. (GH-31616)
Diffstat (limited to 'Include/internal/pycore_unicodeobject.h')
-rw-r--r--Include/internal/pycore_unicodeobject.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/internal/pycore_unicodeobject.h b/Include/internal/pycore_unicodeobject.h
index 977bbeb..4394ce9 100644
--- a/Include/internal/pycore_unicodeobject.h
+++ b/Include/internal/pycore_unicodeobject.h
@@ -44,9 +44,6 @@ struct _Py_unicode_ids {
};
struct _Py_unicode_state {
- /* Single character Unicode strings in the Latin-1 range are being
- shared as well. */
- PyObject *latin1[256];
struct _Py_unicode_fs_codec fs_codec;
// Unicode identifiers (_Py_Identifier): see _PyUnicode_FromId()