MCPcopy Index your code
hub / github.com/RustPython/RustPython / exception_group

Function exception_group

crates/vm/src/exception_group.rs:37–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35}
36
37pub 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
44pub(super) mod types {
45 use super::*;

Callers 4

exception_group_matchFunction · 0.85
prep_reraise_starFunction · 0.85
slot_newMethod · 0.85
init_moduleFunction · 0.85

Calls 2

create_exception_groupFunction · 0.85
get_or_initMethod · 0.45

Tested by

no test coverage detected