We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56bb7b8 commit d647b47Copy full SHA for d647b47
crates/vm/src/builtins/code.rs
@@ -958,12 +958,11 @@ impl PyCode {
958
let next_op = instructions
959
.get(i + 1)
960
.map(|u| u.op.to_base().unwrap_or(u.op));
961
- let fallthrough =
962
- if matches!(next_op, Some(Instruction::NotTaken)) {
963
- (i + 2) * 2
964
- } else {
965
- (i + 1) * 2
966
- };
+ let fallthrough = if matches!(next_op, Some(Instruction::NotTaken)) {
+ (i + 2) * 2
+ } else {
+ (i + 1) * 2
+ };
967
(i * 2, fallthrough, oparg as usize * 2)
968
}
969
Instruction::EndAsyncFor => {
0 commit comments