(tracefunc: PyObjectRef, vm: &VirtualMachine)
| 1372 | |
| 1373 | #[pyfunction] |
| 1374 | fn settrace(tracefunc: PyObjectRef, vm: &VirtualMachine) { |
| 1375 | vm.trace_func.replace(tracefunc); |
| 1376 | update_use_tracing(vm); |
| 1377 | } |
| 1378 | |
| 1379 | #[pyfunction] |
| 1380 | fn _settraceallthreads(tracefunc: PyObjectRef, vm: &VirtualMachine) { |
nothing calls this directly
no test coverage detected