-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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
gh-104050: Argument clinic: annotate post_parsing()
and cleanup()
#107225
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The alternative way of fixing this problem would be to do this (diff is relative to Alternative fixdiff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py
index 8c959ed4d0..e8e2710a18 100755
--- a/Tools/clinic/clinic.py
+++ b/Tools/clinic/clinic.py
@@ -3018,19 +3018,19 @@ def modify(self) -> str:
"""
return ""
- def post_parsing(self) -> str:
+ def post_parsing(self) -> str | None:
"""
The C statements required to do some operations after the end of parsing but before cleaning up.
Return a string containing this code indented at column 0.
- If no operation is necessary, return an empty string.
+ If no operation is necessary, return an empty string or None.
"""
return ""
- def cleanup(self) -> str:
+ def cleanup(self) -> str | None:
"""
The C statements required to clean up after this variable.
Returns a string containing this code indented at column 0.
- If no cleanup is necessary, returns an empty string.
+ If no cleanup is necessary, returns an empty string or None.
"""
return ""
@@ -3660,10 +3660,11 @@ def converter_init(
if NoneType in accept and self.c_default == "Py_None":
self.c_default = "NULL"
- def post_parsing(self):
+ def post_parsing(self) -> str | None:
if self.encoding:
name = self.name
return f"PyMem_FREE({name});\n"
+ return None
def parse_arg(self, argname: str, displayname: str) -> str:
if self.format_unit == 's':
@@ -3841,11 +3842,12 @@ def converter_init(
fail("Py_UNICODE_converter: illegal 'accept' argument " + repr(accept))
self.c_default = "NULL"
- def cleanup(self):
+ def cleanup(self) -> str | None:
if not self.length:
return """\
PyMem_Free((void *){name});
""".format(name=self.name)
+ return None
def parse_arg(self, argname: str, argnum: str) -> str:
if not self.length: |
erlend-aasland
approved these changes
Jul 25, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks
FWIW, I agree that it is better to fix these microbugs instead of taking the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The docstring for
CConverter.post_parsing()
is here:cpython/Tools/clinic/clinic.py
Lines 3021 to 3026 in f443b54
The docstring for
CConverter.cleanup()
is here:cpython/Tools/clinic/clinic.py
Lines 3029 to 3034 in f443b54
Both docstrings state that these methods should always return a
str
, so it's arguably a micro-bug thatstr_converter.post_parsing()
Py_UNICODE_converter.cleanup()
can both sometimes returnNone
currently, sincestr_converter
andPy_UNICODE_converter
are both subclasses ofCConverter
. (The micro-bug doesn't result in any erroneous behaviour currently, however.)As such, I've slightly changed the implementations of these methods so that they always return a
str
, like the docstring promises.