(self, vm: &VirtualMachine)
| 33 | T: ToPyObject, |
| 34 | { |
| 35 | fn to_pyobject(self, vm: &VirtualMachine) -> PyObjectRef { |
| 36 | match self { |
| 37 | Self::Implemented(v) => v.to_pyobject(vm), |
| 38 | Self::NotImplemented => vm.ctx.not_implemented(), |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | pub type PyComparisonValue = PyArithmeticValue<bool>; |
nothing calls this directly
no test coverage detected