Skip to content

Commit 51a1294

Browse files
committed
update comment
1 parent 0727d6f commit 51a1294

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/flowgraph.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1643,7 +1643,8 @@ fast_scan_many_locals(basicblock *entryblock, int nlocals)
16431643
Py_ssize_t blocknum = 0;
16441644
// state[i - 64] == blocknum if local i is guaranteed to
16451645
// be initialized, i.e., if it has had a previous LOAD_FAST or
1646-
// STORE_FAST within that basicblock (not followed by DELETE_FAST).
1646+
// STORE_FAST within that basicblock (not followed by
1647+
// DELETE_FAST/LOAD_FAST_AND_CLEAR/STORE_FAST_MAYBE_NULL).
16471648
for (basicblock *b = entryblock; b != NULL; b = b->b_next) {
16481649
blocknum++;
16491650
for (int i = 0; i < b->b_iused; i++) {

0 commit comments

Comments
 (0)