diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-07-20 17:46:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-20 17:46:04 +0100 |
commit | 9c81fc2dbee3ac8a2f30ad24b0876d80628a94ac (patch) | |
tree | 74642722ed13a213cfe9b33701b72fb621c2886d /Python/generated_cases.c.h | |
parent | 214a25dd81dfe5ee0ab843cf665da2a7473a08db (diff) | |
download | cpython-9c81fc2dbee3ac8a2f30ad24b0876d80628a94ac.tar.gz cpython-9c81fc2dbee3ac8a2f30ad24b0876d80628a94ac.zip |
gh-105481: do not auto-generate pycore_intrinsics.h (#106913)
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index c35b81aee88..2d70966aa09 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -849,7 +849,7 @@ PyObject *value = stack_pointer[-1]; PyObject *res; assert(oparg <= MAX_INTRINSIC_1); - res = _PyIntrinsics_UnaryFunctions[oparg](tstate, value); + res = _PyIntrinsics_UnaryFunctions[oparg].func(tstate, value); Py_DECREF(value); if (res == NULL) goto pop_1_error; stack_pointer[-1] = res; @@ -861,7 +861,7 @@ PyObject *value2 = stack_pointer[-2]; PyObject *res; assert(oparg <= MAX_INTRINSIC_2); - res = _PyIntrinsics_BinaryFunctions[oparg](tstate, value2, value1); + res = _PyIntrinsics_BinaryFunctions[oparg].func(tstate, value2, value1); Py_DECREF(value2); Py_DECREF(value1); if (res == NULL) goto pop_2_error; |