diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-04-30 05:22:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-30 05:22:46 (GMT) |
commit | e8c2f72b94ae5dfba50c0f2e2c06b7ee975c8acb (patch) | |
tree | 26233ce24b46d363198a23184787ca5b9ae3be33 /Include/internal | |
parent | a29aa76a3ff8e5a4ee85961bb37a163f6b75a034 (diff) | |
download | cpython-e8c2f72b94ae5dfba50c0f2e2c06b7ee975c8acb.zip cpython-e8c2f72b94ae5dfba50c0f2e2c06b7ee975c8acb.tar.gz cpython-e8c2f72b94ae5dfba50c0f2e2c06b7ee975c8acb.tar.bz2 |
bpo-43224: Implement substitution of unpacked TypeVarTuple in C (GH-31828)
Co-authored-by: Matthew Rahtz <mrahtz@gmail.com>
Diffstat (limited to 'Include/internal')
-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 cc94662..28fffa9 100644 --- a/Include/internal/pycore_global_strings.h +++ b/Include/internal/pycore_global_strings.h @@ -202,6 +202,7 @@ struct _Py_global_strings { STRUCT_FOR_ID(__truediv__) STRUCT_FOR_ID(__trunc__) STRUCT_FOR_ID(__typing_subst__) + STRUCT_FOR_ID(__typing_unpacked__) STRUCT_FOR_ID(__warningregistry__) STRUCT_FOR_ID(__weakref__) STRUCT_FOR_ID(__xor__) diff --git a/Include/internal/pycore_runtime_init.h b/Include/internal/pycore_runtime_init.h index 9a3a9d0..941badf 100644 --- a/Include/internal/pycore_runtime_init.h +++ b/Include/internal/pycore_runtime_init.h @@ -825,6 +825,7 @@ extern "C" { INIT_ID(__truediv__), \ INIT_ID(__trunc__), \ INIT_ID(__typing_subst__), \ + INIT_ID(__typing_unpacked__), \ INIT_ID(__warningregistry__), \ INIT_ID(__weakref__), \ INIT_ID(__xor__), \ |