()
| 833 | } |
| 834 | |
| 835 | fn user_function_exception() -> &'static PyAtomicRef<Option<PyBaseException>> { |
| 836 | USER_FUNCTION_EXCEPTION |
| 837 | .get() |
| 838 | .expect("user function exception not initialize") |
| 839 | } |
| 840 | |
| 841 | fn enable_traceback() -> &'static PyAtomic<bool> { |
| 842 | ENABLE_TRACEBACK |
no test coverage detected