()
| 31 | |
| 32 | impl Default for PyErrStackItem { |
| 33 | fn default() -> Self { |
| 34 | PyErrStackItem { |
| 35 | exc_type: std::ptr::null_mut(), |
| 36 | exc_value: std::ptr::null_mut(), |
| 37 | exc_traceback: std::ptr::null_mut(), |
| 38 | previous_item: std::ptr::null_mut(), |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | #[repr(C)] |
nothing calls this directly
no outgoing calls
no test coverage detected