Skip to content

gh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefix - #116077

Merged
gvanrossum merged 2 commits into
python:mainfrom
gvanrossum:cleanup-generator
Feb 29, 2024
Merged

gh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefix#116077
gvanrossum merged 2 commits into
python:mainfrom
gvanrossum:cleanup-generator

Conversation

@gvanrossum

@gvanrossumgvanrossum commented Feb 28, 2024

Copy link
Copy Markdown
Member

Looks like 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);

I plan to merge this as soon as the tests pass.

@gvanrossumgvanrossum changed the title gh-115816: Generate calls to sym_new_const() etc. withoout _Py_uop prefixgh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefixFeb 28, 2024
@gvanrossum
gvanrossum enabled auto-merge (squash) February 28, 2024 22:48
@gvanrossum
gvanrossum merged commit 86e5e06 into python:mainFeb 29, 2024
@gvanrossum
gvanrossum deleted the cleanup-generator branch February 29, 2024 00:06
woodruffw pushed a commit to woodruffw-forks/cpython that referenced this pull request Mar 4, 2024
…op prefix (python#116077)
This was left behind by pythonGH-115987. Basically a lot of diffs like this:
```
- res = _Py_uop_sym_new_unknown(ctx);
+ res = sym_new_unknown(ctx);
```
adorilson pushed a commit to adorilson/cpython that referenced this pull request Mar 25, 2024
…op prefix (python#116077)
This was left behind by pythonGH-115987. Basically a lot of diffs like this:
```
- res = _Py_uop_sym_new_unknown(ctx);
+ res = sym_new_unknown(ctx);
```
diegorusso pushed a commit to diegorusso/cpython that referenced this pull request Apr 17, 2024
…op prefix (python#116077)
This was left behind by pythonGH-115987. Basically a lot of diffs like this:
```
- res = _Py_uop_sym_new_unknown(ctx);
+ res = sym_new_unknown(ctx);
```
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@gvanrossum