8000 gh-99240: Fix double-free bug in Argument Clinic str_converter generated code by colorfulappl · Pull Request #99241 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-99240: Fix double-free bug in Argument Clinic str_converter generated code #99241

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 13 commits into from
Nov 24, 2022
Merged
Prev Previous commit
Next Next commit
Simplify function doc
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
colorfulappl and erlend-aasland committed Nov 24, 2022
commit 9d08af55ccae6706c340f3ba872540e2267800df
4 changes: 2 additions & 2 deletions Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2836,8 +2836,8 @@ def modify(self):
def post_parsing(self):
"""
The C statements required to do some operations after the end of parsing but before cleaning up.
Returns a string containing this code indented at column 0.
If no operation is necessary, returns an empty string.
Return a string containing this code indented at column 0.
If no operation is necessary, return an empty string.
"""
return ""

Expand Down
0