mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
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>