We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0727d6f commit 51a1294Copy full SHA for 51a1294
Python/flowgraph.c
@@ -1643,7 +1643,8 @@ fast_scan_many_locals(basicblock *entryblock, int nlocals)
1643
Py_ssize_t blocknum = 0;
1644
// state[i - 64] == blocknum if local i is guaranteed to
1645
// be initialized, i.e., if it has had a previous LOAD_FAST or
1646
- // STORE_FAST within that basicblock (not followed by DELETE_FAST).
+ // STORE_FAST within that basicblock (not followed by
1647
+ // DELETE_FAST/LOAD_FAST_AND_CLEAR/STORE_FAST_MAYBE_NULL).
1648
for (basicblock *b = entryblock; b != NULL; b = b->b_next) {
1649
blocknum++;
1650
for (int i = 0; i < b->b_iused; i++) {
0 commit comments