Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Improve searchability for NoneType hash value
Co-authored-by: Jeong, YunWon <69878+youknowone@users.noreply.github.com>
  • Loading branch information
moreal and youknowone authored Mar 16, 2026
commit 07b792b13600387ce7205623c2b4adbd7eff0110
2 changes: 1 addition & 1 deletion crates/vm/src/builtins/singletons.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl Comparable for PyNone {

impl Hashable for PyNone {
fn hash(_zelf: &Py<Self>, _vm: &VirtualMachine) -> PyResult<PyHash> {
Ok(0xFCA8_6420)
Ok(0xFCA86420)
}
}

Expand Down
Loading