diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 15:30:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 15:30:08 (GMT) |
commit | ccd82a080056f21da2041d4c5d0ac4421ad0c8a8 (patch) | |
tree | f2eafb028e085e2d7d62cc51c5ac2ae7d513e21c /Python/pythonrun.c | |
parent | 212140dceb72d40ba19e4aef089c707dbbcfd5cb (diff) | |
download | cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.zip cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.tar.gz cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.tar.bz2 |
[3.10] Fix typos in the Python directory (GH-28767) (GH-28799)
(cherry picked from commit db693df3e112c5a61f2cbef63eedce3a36520ded)
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 8d9f640..5704bcc 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -2,7 +2,7 @@ /* Top level execution of Python code (including in __main__) */ /* To help control the interfaces between the startup, execution and - * shutdown code, the phases are split across separate modules (boostrap, + * shutdown code, the phases are split across separate modules (bootstrap, * pythonrun, shutdown) */ @@ -943,7 +943,7 @@ print_exception(PyObject *f, PyObject *value) if (end_lineno > lineno) { end_offset = (error_line != NULL) ? line_size : -1; } - // Limit the ammount of '^' that we can display to + // Limit the amount of '^' that we can display to // the size of the text in the source line. if (error_line != NULL && end_offset > line_size + 1) { end_offset = line_size + 1; |