From 44db9ee136c9210ba3365bfbbd75879d6ba70877 Mon Sep 17 00:00:00 2001 From: Weixie Cui Date: Thu, 29 Jan 2026 20:17:18 +0800 Subject: [PATCH] feat: typo --- Parser/tokenizer/helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);