8000 gh-64660: Don't hardcode Argument Clinic return converter result variable name by erlend-aasland · Pull Request #104200 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-64660: Don't hardcode Argument Clinic return converter result variable name #104200

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove XXX comment
  • Loading branch information
erlend-aasland committed May 7, 2023
commit fc2939f04e25b72a534c2c58c21100b148131383
2 changes: 0 additions & 2 deletions Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3902,8 +3902,6 @@ def declare(self, data):
add(' ')
add(data.converter_retval + ';')
data.declarations.append(''.join(line))
# XXX Removing this hack breaks current generated code.
# We should aim to get rid of this workaround.
data.return_value = data.converter_retval

def err_occurred_if(self, expr, data):
Expand Down
0