From: sobolevn Date: Mon, 31 Mar 2025 13:29:23 +0000 (+0300) Subject: Fix PEP number in `ast_opt.c` for new `finally` check (#131928) X-Git-Tag: v3.14.0a7~128 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e3ec335e01453639f5f475a5a8f917a1cc83b27;p=thirdparty%2FPython%2Fcpython.git Fix PEP number in `ast_opt.c` for new `finally` check (#131928) --- 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;