(flag: bool)
| 700 | |
| 701 | #[pyfunction] |
| 702 | fn enable_callback_tracebacks(flag: bool) { |
| 703 | enable_traceback().store(flag, Ordering::Relaxed); |
| 704 | } |
| 705 | |
| 706 | #[pyfunction] |
| 707 | fn register_adapter(typ: PyTypeRef, adapter: ArgCallable, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected