Newtype around PyObject that implements Ord using python value comparisons. Python exceptions are converted into Rust panics.
| 13 | /// Newtype around PyObject that implements Ord using python value comparisons. |
| 14 | /// Python exceptions are converted into Rust panics. |
| 15 | struct OrdPyObject(PyObject); |
| 16 | |
| 17 | impl PartialEq for OrdPyObject { |
| 18 | fn eq(&self, _other: &Self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected