(self, vm: &VirtualMachine)
| 148 | } |
| 149 | impl ToPyObject for Limits { |
| 150 | fn to_pyobject(self, vm: &VirtualMachine) -> PyObjectRef { |
| 151 | (self.0.rlim_cur, self.0.rlim_max).to_pyobject(vm) |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | #[pyfunction] |
no outgoing calls
no test coverage detected