()
| 35 | } |
| 36 | |
| 37 | pub fn exception_group() -> &'static Py<PyType> { |
| 38 | ::rustpython_vm::common::static_cell! { |
| 39 | static CELL: ::rustpython_vm::builtins::PyTypeRef; |
| 40 | } |
| 41 | CELL.get_or_init(|| create_exception_group(Context::genesis())) |
| 42 | } |
| 43 | |
| 44 | pub(super) mod types { |
| 45 | use super::*; |
no test coverage detected