Files
RustPython/compiler
snowapril 689c0b6c5b Add missing codes for empty statement body
Fix #3704
Compared to previous version of `compile_program_single`, below two
codes are skipped when an empty body is given.
```rust
self.emit_constant(ConstantData::None);
self.emit(Instruction::ReturnValue);
```

Signed-off-by: snowapril <sinjihng@gmail.com>
2022-05-16 11:51:49 +09:00
..
2021-10-21 11:46:24 -05:00
2022-04-18 00:09:22 +09:00