diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-09 12:27:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 12:27:03 (GMT) |
commit | 93d292c2b3f8e85ef562c37f59678c639b9b8fcb (patch) | |
tree | 17f1ff429d63ab4c900d2fd2a3bcf143e53e760f /Include/internal/pycore_runtime_init_generated.h | |
parent | d137c2cae28b79555433079d917c3e0614bdcd61 (diff) | |
download | cpython-93d292c2b3f8e85ef562c37f59678c639b9b8fcb.zip cpython-93d292c2b3f8e85ef562c37f59678c639b9b8fcb.tar.gz cpython-93d292c2b3f8e85ef562c37f59678c639b9b8fcb.tar.bz2 |
gh-106303: Use _PyObject_LookupAttr() instead of PyObject_GetAttr() (GH-106304)
It simplifies and speed up the code.
Diffstat (limited to 'Include/internal/pycore_runtime_init_generated.h')
-rw-r--r-- | Include/internal/pycore_runtime_init_generated.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/internal/pycore_runtime_init_generated.h b/Include/internal/pycore_runtime_init_generated.h index 9a28368..2d66647 100644 --- a/Include/internal/pycore_runtime_init_generated.h +++ b/Include/internal/pycore_runtime_init_generated.h @@ -663,6 +663,7 @@ extern "C" { INIT_ID(__lshift__), \ INIT_ID(__lt__), \ INIT_ID(__main__), \ + INIT_ID(__match_args__), \ INIT_ID(__matmul__), \ INIT_ID(__missing__), \ INIT_ID(__mod__), \ |