(&self, needle: PyObjectRef, vm: &VirtualMachine)
| 1049 | } |
| 1050 | |
| 1051 | fn __delitem__(&self, needle: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 1052 | self.delitem_inner(&needle, vm) |
| 1053 | } |
| 1054 | |
| 1055 | fn __add__(&self, other: PyObjectRef, vm: &VirtualMachine) -> PyResult<PyRef<Self>> { |
| 1056 | if let Some(other) = other.downcast_ref::<Self>() { |
nothing calls this directly
no test coverage detected