https://github.com/python/cpython/commit/0fa1fc69f3ff0deb778e3c9f37cdc0c702bc8ad2
commit: 0fa1fc69f3ff0deb778e3c9f37cdc0c702bc8ad2
branch: main
author: cui <[email protected]>
committer: pablogsal <[email protected]>
date: 2026-01-29T13:26:38Z
summary:

gh-144322: typo This errors to These errors (#144323)

files:
M Parser/tokenizer/helpers.c

diff --git a/Parser/tokenizer/helpers.c b/Parser/tokenizer/helpers.c
index a03531a744136d..fda8216a3005b9 100644
--- a/Parser/tokenizer/helpers.c
+++ b/Parser/tokenizer/helpers.c
@@ -65,7 +65,7 @@ _syntaxerror_range(struct tok_state *tok, const char *format,
 int
 _PyTokenizer_syntaxerror(struct tok_state *tok, const char *format, ...)
 {
-    // This errors are cleaned on startup. Todo: Fix it.
+    // These errors are cleaned on startup. Todo: Fix it.
     va_list vargs;
     va_start(vargs, format);
     int ret = _syntaxerror_range(tok, format, -1, -1, vargs);

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to