diff options
author | Yang Hau <vulxj0j8j8@gmail.com> | 2023-12-01 09:37:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 09:37:40 (GMT) |
commit | 707c37e373d7ea4e3f06b24c719fa45f70fbfa49 (patch) | |
tree | 1f3f61f0715561ef85d0782828c4bce0cd33b6d2 /Tools | |
parent | 467e3f94171f84221272011d40e4ee32fba47f73 (diff) | |
download | cpython-707c37e373d7ea4e3f06b24c719fa45f70fbfa49.zip cpython-707c37e373d7ea4e3f06b24c719fa45f70fbfa49.tar.gz cpython-707c37e373d7ea4e3f06b24c719fa45f70fbfa49.tar.bz2 |
Fix typos in variable names, function names, and comments (GH-101868)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/build/stable_abi.py | 12 | ||||
-rw-r--r-- | Tools/c-analyzer/c_analyzer/__init__.py | 2 | ||||
-rwxr-xr-x | Tools/clinic/clinic.py | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/Tools/build/stable_abi.py b/Tools/build/stable_abi.py index 7cba788..85c437d 100644 --- a/Tools/build/stable_abi.py +++ b/Tools/build/stable_abi.py @@ -521,7 +521,7 @@ def gcc_get_limited_api_macros(headers): api_hexversion = sys.version_info.major << 24 | sys.version_info.minor << 16 - preprocesor_output_with_macros = subprocess.check_output( + preprocessor_output_with_macros = subprocess.check_output( sysconfig.get_config_var("CC").split() + [ # Prevent the expansion of the exported macros so we can @@ -540,7 +540,7 @@ def gcc_get_limited_api_macros(headers): return { target for target in re.findall( - r"#define (\w+)", preprocesor_output_with_macros + r"#define (\w+)", preprocessor_output_with_macros ) } @@ -561,7 +561,7 @@ def gcc_get_limited_api_definitions(headers): Requires Python built with a GCC-compatible compiler. (clang might work) """ api_hexversion = sys.version_info.major << 24 | sys.version_info.minor << 16 - preprocesor_output = subprocess.check_output( + preprocessor_output = subprocess.check_output( sysconfig.get_config_var("CC").split() + [ # Prevent the expansion of the exported macros so we can capture @@ -581,13 +581,13 @@ def gcc_get_limited_api_definitions(headers): stderr=subprocess.DEVNULL, ) stable_functions = set( - re.findall(r"__PyAPI_FUNC\(.*?\)\s*(.*?)\s*\(", preprocesor_output) + re.findall(r"__PyAPI_FUNC\(.*?\)\s*(.*?)\s*\(", preprocessor_output) ) stable_exported_data = set( - re.findall(r"__EXPORT_DATA\((.*?)\)", preprocesor_output) + re.findall(r"__EXPORT_DATA\((.*?)\)", preprocessor_output) ) stable_data = set( - re.findall(r"__PyAPI_DATA\(.*?\)[\s\*\(]*([^);]*)\)?.*;", preprocesor_output) + re.findall(r"__PyAPI_DATA\(.*?\)[\s\*\(]*([^);]*)\)?.*;", preprocessor_output) ) return stable_data | stable_exported_data | stable_functions diff --git a/Tools/c-analyzer/c_analyzer/__init__.py b/Tools/c-analyzer/c_analyzer/__init__.py index 171fa25..b83ffc0 100644 --- a/Tools/c-analyzer/c_analyzer/__init__.py +++ b/Tools/c-analyzer/c_analyzer/__init__.py @@ -18,7 +18,7 @@ from .info import Analysis def analyze(filenmes, **kwargs): - results = iter_analyis_results(filenames, **kwargs) + results = iter_analysis_results(filenames, **kwargs) return Analysis.from_results(results) diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py index 54962c9..6c76f66 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -406,7 +406,7 @@ def version_splitter(s: str) -> tuple[int, ...]: flush() return tuple(version) -def version_comparitor(version1: str, version2: str) -> Literal[-1, 0, 1]: +def version_comparator(version1: str, version2: str) -> Literal[-1, 0, 1]: iterator = itertools.zip_longest( version_splitter(version1), version_splitter(version2), fillvalue=0 ) @@ -5203,7 +5203,7 @@ class DSLParser: def directive_version(self, required: str) -> None: global version - if version_comparitor(version, required) < 0: + if version_comparator(version, required) < 0: fail("Insufficient Clinic version!\n" f" Version: {version}\n" f" Required: {required}") |