diff options
author | sobolevn <mail@sobolevn.me> | 2025-03-31 16:29:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 16:29:23 +0300 |
commit | 1e3ec335e01453639f5f475a5a8f917a1cc83b27 (patch) | |
tree | 97921100a2c3d205ba7a51f16b43a8f1b3e27053 /Python/ast_opt.c | |
parent | 0147be09d585e6b5e013ea2d1b24c77500d9a083 (diff) | |
download | cpython-1e3ec335e01453639f5f475a5a8f917a1cc83b27.tar.gz cpython-1e3ec335e01453639f5f475a5a8f917a1cc83b27.zip |
Fix PEP number in `ast_opt.c` for new `finally` check (#131928)
Diffstat (limited to 'Python/ast_opt.c')
-rw-r--r-- | Python/ast_opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast_opt.c b/Python/ast_opt.c index 99a2418da46..1b44fa25b9f 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; |