(self, other: PyObjectRef, vm: &VirtualMachine)
| 485 | } |
| 486 | |
| 487 | fn __ror__(self, other: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 488 | let other_dict: Result<Self, _> = other.downcast(); |
| 489 | if let Ok(other) = other_dict { |
| 490 | let other_cp = other.copy(); |
| 491 | other_cp.merge_dict(self, vm)?; |
| 492 | return Ok(other_cp.into_pyobject(vm)); |
| 493 | } |
| 494 | Ok(vm.ctx.not_implemented()) |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | impl DefaultConstructor for PyDict {} |
nothing calls this directly
no test coverage detected