Skip to content

Commit f52d987

Browse files
Fix some typos in comments (GH-32422)
1 parent 6773203 commit f52d987

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1470,7 +1470,7 @@ eval_frame_handle_pending(PyThreadState *tstate)
14701470
#define TRACE_FUNCTION_UNWIND() \
14711471
if (cframe.use_tracing) { \
14721472
/* Since we are already unwinding, \
1473-
* we dont't care if this raises */ \
1473+
* we don't care if this raises */ \
14741474
trace_function_exit(tstate, frame, NULL); \
14751475
}
14761476

configure

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@ AC_MSG_RESULT($EXPORTSYMS)
12471247
# make sure we default having it set to "no": this is used by
12481248
# distutils.unixccompiler to know if it should add --enable-new-dtags
12491249
# to linker command lines, and failing to detect GNU ld simply results
1250-
# in the same bahaviour as before.
1250+
# in the same behaviour as before.
12511251
AC_SUBST(GNULD)
12521252
AC_MSG_CHECKING(for GNU ld)
12531253
ac_prog=ld

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def update_extension_flags(self, ext):
343343
344344
Distutils appends extra args to the compiler arguments. Some flags like
345345
-I must appear earlier, otherwise the pre-processor picks up files
346-
from system inclue directories.
346+
from system include directories.
347347
"""
348348
upper_name = ext.name.upper()
349349
# Parse compiler flags (-I, -D, -U, extra args)

0 commit comments

Comments
 (0)