(self, name: str)
| 102 | self.session = session |
| 103 | |
| 104 | def __getitem__(self, name: str) -> DPackedFunc: |
| 105 | func = self.session._get_cached_method("ffi.ModuleGetFunction") |
| 106 | return DPackedFunc(func(self, name, False), self.session) |
| 107 | |
| 108 | |
| 109 | @register_object("runtime.disco.Session") |
nothing calls this directly
no test coverage detected