Skip to content

Commit 4271c43

Browse files
authored
Remove unnecessary ()
1 parent 9c7d675 commit 4271c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6810,7 +6810,7 @@ compiler_pattern_or(struct compiler *c, pattern_ty p, pattern_context *pc)
68106810
// Need to NULL this for the PyObject_Free call in the error block.
68116811
old_pc.fail_pop = NULL;
68126812
// No match. Pop the remaining copy of the subject and fail:
6813-
if ((cfg_builder_addop_noarg(CFG_BUILDER(c), POP_TOP, LOC(p)) < 0) ||
6813+
if (cfg_builder_addop_noarg(CFG_BUILDER(c), POP_TOP, LOC(p)) < 0 ||
68146814
jump_to_fail_pop(c, LOC(p), pc, JUMP) < 0) {
68156815
goto error;
68166816
}

0 commit comments

Comments
 (0)