[Python-checkins] Fix typos in comments (#94305)

rhettinger webhook-mailer at python.org
Tue Jun 28 10:28:42 EDT 2022


https://github.com/python/cpython/commit/56310136170ef6653cb050f58dd2d32538997f59
commit: 56310136170ef6653cb050f58dd2d32538997f59
branch: main
author: yutotnh <57719497+yutotnh at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2022-06-28T16:28:21+02:00
summary:

Fix typos in comments (#94305)

files:
M Mac/BuildScript/build-installer.py
M Tools/c-analyzer/c_parser/parser/__init__.py

diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 50b55f9cd1da8..a1d31c423814b 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -203,7 +203,7 @@ def internalTk():
 
 # Do we use 8.6.8 when building our own copy
 # of Tcl/Tk or a modern version.
-#   We use the old version when buildin on
+#   We use the old version when building on
 #   old versions of macOS due to build issues.
 def useOldTk():
     return getBuildTuple() < (10, 15)
diff --git a/Tools/c-analyzer/c_parser/parser/__init__.py b/Tools/c-analyzer/c_parser/parser/__init__.py
index b5eae2ed92d0d..0343c2d68aac9 100644
--- a/Tools/c-analyzer/c_parser/parser/__init__.py
+++ b/Tools/c-analyzer/c_parser/parser/__init__.py
@@ -42,7 +42,7 @@
    + (stmt) case:  between expression and stmt
    + (stmt) default:  between "default" and stmt
 * "="
-   + (decl) delaration:  between decl and initializer
+   + (decl) declaration:  between decl and initializer
    + (decl) enumerator:  between identifier and "initializer"
    + (expr) assignment:  between "var" and expr
 
@@ -92,7 +92,7 @@
 * no "inline" type decls in function return types
 * no superfluous parentheses in declarators
 * var decls in for loops are always "simple" (e.g. no inline types)
-* only inline struct/union/enum decls may be anonymouns (without a name)
+* only inline struct/union/enum decls may be anonymous (without a name)
 * no function pointers in function pointer parameters
 * for loop "headers" do not have curly braces (e.g. compound init)
 * syntactically, variable decls do not overlap with stmts/exprs, except



More information about the Python-checkins mailing list