forked from Rust-related/RustPython
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>