]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefix (#116077)
authorGuido van Rossum <guido@python.org>
Thu, 29 Feb 2024 00:05:53 +0000 (16:05 -0800)
committerGitHub <noreply@github.com>
Thu, 29 Feb 2024 00:05:53 +0000 (00:05 +0000)
commit86e5e063aba76a7f4fc58f7d06b17b0a4730fd8e
treec05481118366a7abea7bb2531b861ab3d7712622
parent479ac5ce8a311c9a5830b96e972478867fcbce61
gh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefix (#116077)

This was left behind by GH-115987. Basically a lot of diffs like this:
```
-            res = _Py_uop_sym_new_unknown(ctx);
+            res = sym_new_unknown(ctx);
```
Lib/test/test_generated_cases.py
Python/optimizer_cases.c.h
Tools/cases_generator/optimizer_generator.py