From 1e3ec335e01453639f5f475a5a8f917a1cc83b27 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Mon, 31 Mar 2025 16:29:23 +0300 Subject: [PATCH] Fix PEP number in `ast_opt.c` for new `finally` check (#131928) --- Python/ast_opt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ast_opt.c b/Python/ast_opt.c index 99a2418da46e..1b44fa25b9f1 100644 --- a/Python/ast_opt.c +++ b/Python/ast_opt.c @@ -21,7 +21,7 @@ typedef struct { int ff_features; int syntax_check_only; - _Py_c_array_t cf_finally; /* context for PEP 678 check */ + _Py_c_array_t cf_finally; /* context for PEP 765 check */ int cf_finally_used; } _PyASTOptimizeState; -- 2.47.3