diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-05-05 17:16:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 17:16:06 (GMT) |
commit | 1ed8d035f1edfaec34016b9f8d615df9e9fe9414 (patch) | |
tree | 627f74c12cf8a38ab7c8061449ff309a48b75725 /Include | |
parent | 354ab7a5c812bf103f7aed5405f02fc81fda5b58 (diff) | |
download | cpython-1ed8d035f1edfaec34016b9f8d615df9e9fe9414.zip cpython-1ed8d035f1edfaec34016b9f8d615df9e9fe9414.tar.gz cpython-1ed8d035f1edfaec34016b9f8d615df9e9fe9414.tar.bz2 |
gh-87390: Fix starred tuple equality and pickling (GH-92337)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_global_strings.h | 1 | ||||
-rw-r--r-- | Include/internal/pycore_runtime_init.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_global_strings.h b/Include/internal/pycore_global_strings.h index 28fffa9..4e1f2ec 100644 --- a/Include/internal/pycore_global_strings.h +++ b/Include/internal/pycore_global_strings.h @@ -300,6 +300,7 @@ struct _Py_global_strings { STRUCT_FOR_ID(n_unnamed_fields) STRUCT_FOR_ID(name) STRUCT_FOR_ID(newlines) + STRUCT_FOR_ID(next) STRUCT_FOR_ID(obj) STRUCT_FOR_ID(offset) STRUCT_FOR_ID(onceregistry) diff --git a/Include/internal/pycore_runtime_init.h b/Include/internal/pycore_runtime_init.h index 941badf..c1c5fd5 100644 --- a/Include/internal/pycore_runtime_init.h +++ b/Include/internal/pycore_runtime_init.h @@ -923,6 +923,7 @@ extern "C" { INIT_ID(n_unnamed_fields), \ INIT_ID(name), \ INIT_ID(newlines), \ + INIT_ID(next), \ INIT_ID(obj), \ INIT_ID(offset), \ INIT_ID(onceregistry), \ |