Skip to content

Commit 07b792b

Browse files
morealyouknowone
andauthored
Improve searchability for NoneType hash value
Co-authored-by: Jeong, YunWon <69878+youknowone@users.noreply.github.com>
1 parent 4ababea commit 07b792b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/vm/src/builtins/singletons.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl Comparable for PyNone {
9191

9292
impl Hashable for PyNone {
9393
fn hash(_zelf: &Py<Self>, _vm: &VirtualMachine) -> PyResult<PyHash> {
94-
Ok(0xFCA8_6420)
94+
Ok(0xFCA86420)
9595
}
9696
}
9797

0 commit comments

Comments
 (0)