(self, vm: &VirtualMachine)
| 1373 | |
| 1374 | impl ToPyObject for CodeObject { |
| 1375 | fn to_pyobject(self, vm: &VirtualMachine) -> PyObjectRef { |
| 1376 | vm.ctx.new_code(self).into() |
| 1377 | } |
| 1378 | } |
| 1379 | |
| 1380 | impl ToPyObject for bytecode::CodeObject { |
no test coverage detected