From f1ae04ec860497afe7b4d0d1032468deaea6d149 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Mon, 31 Mar 2025 08:53:43 +0300 Subject: [PATCH] Fix PEP number in `ast_opt.c` for new `finally` check --- 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 99a2418da46e35..1b44fa25b9f150 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;