File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -5034,17 +5034,16 @@ compiler_sync_comprehension_generator(struct compiler *c,
5034
5034
and then write to the element */
5035
5035
5036
5036
comprehension_ty gen ;
5037
- basicblock * start , * anchor , * skip , * if_cleanup ;
5037
+ basicblock * start , * anchor , * if_cleanup ;
5038
5038
Py_ssize_t i , n ;
5039
5039
5040
5040
start = compiler_new_block (c );
5041
- skip = compiler_new_block (c );
5042
5041
if_cleanup = compiler_new_block (c );
5043
5042
anchor = compiler_new_block (c );
5044
5043
5045
- if (start == NULL || skip == NULL || if_cleanup == NULL ||
5046
- anchor == NULL )
5044
+ if (start == NULL || if_cleanup == NULL || anchor == NULL ) {
5047
5045
return 0 ;
5046
+ }
5048
5047
5049
5048
gen = (comprehension_ty )asdl_seq_GET (generators , gen_index );
5050
5049
@@ -5131,8 +5130,6 @@ compiler_sync_comprehension_generator(struct compiler *c,
5131
5130
default :
5132
5131
return 0 ;
5133
5132
}
5134
-
5135
- compiler_use_next_block (c , skip );
5136
5133
}
5137
5134
compiler_use_next_block (c , if_cleanup );
5138
5135
if (start ) {
You can’t perform that action at this time.
0 commit comments