(
_code: PyObjectRef,
_offset: i32,
vm: &VirtualMachine,
)
| 332 | |
| 333 | #[pyfunction] |
| 334 | fn get_executor( |
| 335 | _code: PyObjectRef, |
| 336 | _offset: i32, |
| 337 | vm: &VirtualMachine, |
| 338 | ) -> PyResult<PyObjectRef> { |
| 339 | Ok(vm.ctx.none()) |
| 340 | } |
| 341 | |
| 342 | #[pyfunction] |
| 343 | fn get_specialization_stats(vm: &VirtualMachine) -> PyObjectRef { |