(profilefunc: PyObjectRef, vm: &VirtualMachine)
| 1346 | |
| 1347 | #[pyfunction] |
| 1348 | fn setprofile(profilefunc: PyObjectRef, vm: &VirtualMachine) { |
| 1349 | vm.profile_func.replace(profilefunc); |
| 1350 | update_use_tracing(vm); |
| 1351 | } |
| 1352 | |
| 1353 | #[pyfunction] |
| 1354 | fn setrecursionlimit(recursion_limit: i32, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected