(zelf: &Py<Self>, name: &Py<PyStr>, vm: &VirtualMachine)
| 435 | |
| 436 | impl GetAttr for PyModule { |
| 437 | fn getattro(zelf: &Py<Self>, name: &Py<PyStr>, vm: &VirtualMachine) -> PyResult { |
| 438 | zelf.getattr_inner(name, vm) |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | impl Representable for PyModule { |
nothing calls this directly
no test coverage detected