]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix PEP number in `ast_opt.c` for new `finally` check (#131928)
authorsobolevn <mail@sobolevn.me>
Mon, 31 Mar 2025 13:29:23 +0000 (16:29 +0300)
committerGitHub <noreply@github.com>
Mon, 31 Mar 2025 13:29:23 +0000 (16:29 +0300)
Python/ast_opt.c

index 99a2418da46e35ae6721ff6443e39e450b3bcc6e..1b44fa25b9f15032ca3f2c2c71379d9f611afa63 100644 (file)
@@ -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;