mirror of https://github.com/python/cpython
Fix typos in variable names, function names, and comments (GH-101868)
This commit is contained in:
parent
467e3f9417
commit
707c37e373
|
@ -352,7 +352,7 @@ def _read_directory(archive):
|
||||||
|
|
||||||
with fp:
|
with fp:
|
||||||
# GH-87235: On macOS all file descriptors for /dev/fd/N share the same
|
# GH-87235: On macOS all file descriptors for /dev/fd/N share the same
|
||||||
# file offset, reset the file offset after scanning the zipfile diretory
|
# file offset, reset the file offset after scanning the zipfile directory
|
||||||
# to not cause problems when some runs 'python3 /dev/fd/9 9<some_script'
|
# to not cause problems when some runs 'python3 /dev/fd/9 9<some_script'
|
||||||
start_offset = fp.tell()
|
start_offset = fp.tell()
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -1492,7 +1492,7 @@ def packageFromRecipe(targetDir, recipe):
|
||||||
IFPkgFlagRelocatable=False,
|
IFPkgFlagRelocatable=False,
|
||||||
IFPkgFlagRestartAction="NoRestart",
|
IFPkgFlagRestartAction="NoRestart",
|
||||||
IFPkgFlagRootVolumeOnly=True,
|
IFPkgFlagRootVolumeOnly=True,
|
||||||
IFPkgFlagUpdateInstalledLangauges=False,
|
IFPkgFlagUpdateInstalledLanguages=False,
|
||||||
)
|
)
|
||||||
writePlist(pl, os.path.join(packageContents, 'Info.plist'))
|
writePlist(pl, os.path.join(packageContents, 'Info.plist'))
|
||||||
|
|
||||||
|
|
|
@ -438,7 +438,7 @@ typedef struct {
|
||||||
bool list;
|
bool list;
|
||||||
// if true, only list detected runtimes with paths without launching
|
// if true, only list detected runtimes with paths without launching
|
||||||
bool listPaths;
|
bool listPaths;
|
||||||
// if true, display help message before contiuning
|
// if true, display help message before continuing
|
||||||
bool help;
|
bool help;
|
||||||
// if set, limits search to registry keys with the specified Company
|
// if set, limits search to registry keys with the specified Company
|
||||||
// This is intended for debugging and testing only
|
// This is intended for debugging and testing only
|
||||||
|
|
|
@ -402,7 +402,7 @@ error:
|
||||||
|
|
||||||
void
|
void
|
||||||
_Pypegen_set_syntax_error(Parser* p, Token* last_token) {
|
_Pypegen_set_syntax_error(Parser* p, Token* last_token) {
|
||||||
// Existing sintax error
|
// Existing syntax error
|
||||||
if (PyErr_Occurred()) {
|
if (PyErr_Occurred()) {
|
||||||
// Prioritize tokenizer errors to custom syntax errors raised
|
// Prioritize tokenizer errors to custom syntax errors raised
|
||||||
// on the second phase only if the errors come from the parser.
|
// on the second phase only if the errors come from the parser.
|
||||||
|
|
|
@ -521,7 +521,7 @@ def gcc_get_limited_api_macros(headers):
|
||||||
|
|
||||||
api_hexversion = sys.version_info.major << 24 | sys.version_info.minor << 16
|
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()
|
sysconfig.get_config_var("CC").split()
|
||||||
+ [
|
+ [
|
||||||
# Prevent the expansion of the exported macros so we can
|
# Prevent the expansion of the exported macros so we can
|
||||||
|
@ -540,7 +540,7 @@ def gcc_get_limited_api_macros(headers):
|
||||||
return {
|
return {
|
||||||
target
|
target
|
||||||
for target in re.findall(
|
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)
|
Requires Python built with a GCC-compatible compiler. (clang might work)
|
||||||
"""
|
"""
|
||||||
api_hexversion = sys.version_info.major << 24 | sys.version_info.minor << 16
|
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()
|
sysconfig.get_config_var("CC").split()
|
||||||
+ [
|
+ [
|
||||||
# Prevent the expansion of the exported macros so we can capture
|
# 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,
|
stderr=subprocess.DEVNULL,
|
||||||
)
|
)
|
||||||
stable_functions = set(
|
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(
|
stable_exported_data = set(
|
||||||
re.findall(r"__EXPORT_DATA\((.*?)\)", preprocesor_output)
|
re.findall(r"__EXPORT_DATA\((.*?)\)", preprocessor_output)
|
||||||
)
|
)
|
||||||
stable_data = set(
|
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
|
return stable_data | stable_exported_data | stable_functions
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ from .info import Analysis
|
||||||
|
|
||||||
|
|
||||||
def analyze(filenmes, **kwargs):
|
def analyze(filenmes, **kwargs):
|
||||||
results = iter_analyis_results(filenames, **kwargs)
|
results = iter_analysis_results(filenames, **kwargs)
|
||||||
return Analysis.from_results(results)
|
return Analysis.from_results(results)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -406,7 +406,7 @@ def version_splitter(s: str) -> tuple[int, ...]:
|
||||||
flush()
|
flush()
|
||||||
return tuple(version)
|
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(
|
iterator = itertools.zip_longest(
|
||||||
version_splitter(version1), version_splitter(version2), fillvalue=0
|
version_splitter(version1), version_splitter(version2), fillvalue=0
|
||||||
)
|
)
|
||||||
|
@ -5203,7 +5203,7 @@ class DSLParser:
|
||||||
|
|
||||||
def directive_version(self, required: str) -> None:
|
def directive_version(self, required: str) -> None:
|
||||||
global version
|
global version
|
||||||
if version_comparitor(version, required) < 0:
|
if version_comparator(version, required) < 0:
|
||||||
fail("Insufficient Clinic version!\n"
|
fail("Insufficient Clinic version!\n"
|
||||||
f" Version: {version}\n"
|
f" Version: {version}\n"
|
||||||
f" Required: {required}")
|
f" Required: {required}")
|
||||||
|
|
Loading…
Reference in New Issue