@@ -2376,7 +2376,7 @@ static int
2376
2376
compiler_visit_annexpr (struct compiler * c , expr_ty annotation )
2377
2377
{
2378
2378
location loc = LOC (annotation );
2379
- ADDOP_LOAD_CONST_NEW (c , loc , _PyAST_ExprAsUnicode (annotation )); // CHANGED
2379
+ ADDOP_LOAD_CONST_NEW (c , loc , _PyAST_ExprAsUnicode (annotation ));
2380
2380
return 1 ;
2381
2381
}
2382
2382
@@ -3354,10 +3354,10 @@ compiler_try_finally(struct compiler *c, stmt_ty s)
3354
3354
loc = location_of_last_executing_statement (s -> v .Try .finalbody );
3355
3355
compiler_pop_fblock (c , FINALLY_END , end );
3356
3356
3357
- ADDOP_I (c , loc , RERAISE , 0 ); // CHANGED
3357
+ ADDOP_I (c , loc , RERAISE , 0 );
3358
3358
3359
3359
USE_LABEL (c , cleanup );
3360
- POP_EXCEPT_AND_RERAISE (c , loc ); // CHANGED
3360
+ POP_EXCEPT_AND_RERAISE (c , loc );
3361
3361
3362
3362
USE_LABEL (c , exit );
3363
3363
return 1 ;
@@ -3407,10 +3407,10 @@ compiler_try_star_finally(struct compiler *c, stmt_ty s)
3407
3407
loc = location_of_last_executing_statement (s -> v .Try .finalbody );
3408
3408
3409
3409
compiler_pop_fblock (c , FINALLY_END , end );
3410
- ADDOP_I (c , loc , RERAISE , 0 ); // CHANGED
3410
+ ADDOP_I (c , loc , RERAISE , 0 );
3411
3411
3412
3412
USE_LABEL (c , cleanup );
3413
- POP_EXCEPT_AND_RERAISE (c , loc ); // CHANGED
3413
+ POP_EXCEPT_AND_RERAISE (c , loc );
3414
3414
3415
3415
USE_LABEL (c , exit );
3416
3416
return 1 ;
@@ -6030,7 +6030,7 @@ static int
6030
6030
check_ann_expr (struct compiler * c , expr_ty e )
6031
6031
{
6032
6032
VISIT (c , expr , e );
6033
- ADDOP (c , LOC (e ), POP_TOP ); // CHANGED
6033
+ ADDOP (c , LOC (e ), POP_TOP );
6034
6034
return 1 ;
6035
6035
}
6036
6036
@@ -6266,14 +6266,14 @@ compiler_slice(struct compiler *c, expr_ty s)
6266
6266
VISIT (c , expr , s -> v .Slice .lower );
6267
6267
}
6268
6268
else {
6269
- ADDOP_LOAD_CONST (c , LOC (s ), Py_None ); // CHANGED
6269
+ ADDOP_LOAD_CONST (c , LOC (s ), Py_None );
6270
6270
}
6271
6271
6272
6272
if (s -> v .Slice .upper ) {
6273
6273
VISIT (c , expr , s -> v .Slice .upper );
6274
6274
}
6275
6275
else {
6276
- ADDOP_LOAD_CONST (c , LOC (s ), Py_None ); // CHANGED
6276
+ ADDOP_LOAD_CONST (c , LOC (s ), Py_None );
6277
6277
}
6278
6278
6279
6279
if (s -> v .Slice .step ) {
@@ -7091,7 +7091,7 @@ compiler_match_inner(struct compiler *c, stmt_ty s, pattern_context *pc)
7091
7091
ADDOP (c , loc , POP_TOP );
7092
7092
}
7093
7093
VISIT_SEQ (c , stmt , m -> body );
7094
- ADDOP_JUMP (c , NO_LOCATION , JUMP , end ); // CHANGED
7094
+ ADDOP_JUMP (c , NO_LOCATION , JUMP , end );
7095
7095
// If the pattern fails to match, we want the line number of the
7096
7096
// cleanup to be associated with the failed pattern, not the last line
7097
7097
// of the body
0 commit comments