mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
Merge pull request #3193 from tony-jinwoo-ahn/writeln
Replace write! with writeln!
This commit is contained in:
@@ -874,7 +874,7 @@ impl<C: Constant> fmt::Display for CodeObject<C> {
|
||||
self.display_inner(f, false, 1)?;
|
||||
for constant in &*self.constants {
|
||||
if let BorrowedConstant::Code { code } = constant.borrow_constant() {
|
||||
write!(f, "\nDisassembly of {:?}\n", code)?;
|
||||
writeln!(f, "\nDisassembly of {:?}", code)?;
|
||||
code.fmt(f)?;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user