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 d5c8ad2 commit 0f02993Copy full SHA for 0f02993
Python/compile.c
@@ -7820,7 +7820,6 @@ is_exit_without_lineno(basicblock *b) {
7820
static int
7821
duplicate_exits_without_lineno(struct compiler *c)
7822
{
7823
- basicblock *entry = NULL;
7824
/* Copy all exit blocks without line number that are targets of a jump.
7825
*/
7826
for (basicblock *b = c->u->u_blocks; b != NULL; b = b->b_list) {
@@ -7846,9 +7845,7 @@ duplicate_exits_without_lineno(struct compiler *c)
7846
7845
target->b_next = new_target;
7847
}
7848
7849
- entry = b;
7850
7851
- assert(entry != NULL);
7852
/* Eliminate empty blocks */
7853
7854
while (b->b_next && b->b_next->b_iused == 0) {
0 commit comments