Skip to content

Commit 872bcb4

Browse files
authored
Merge pull request RustPython#2219 from youknowone/fix-notimpl
Fix NotImplemented repr
2 parents f59ae72 + 7319950 commit 872bcb4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vm/src/obj/objsingletons.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl PyValue for PyNotImplemented {
6565
impl PyNotImplemented {
6666
#[pymethod(magic)]
6767
fn repr(&self) -> String {
68-
"PyNotImplemented".to_owned()
68+
"NotImplemented".to_owned()
6969
}
7070
}
7171

0 commit comments

Comments
 (0)