(self, name)
| 133 | check_call(_LIB.DGLModImport(self.handle, module.handle)) |
| 134 | |
| 135 | def __getitem__(self, name): |
| 136 | if not isinstance(name, string_types): |
| 137 | raise ValueError("Can only take string as function name") |
| 138 | return self.get_function(name) |
| 139 | |
| 140 | def __call__(self, *args): |
| 141 | if self._entry: |
nothing calls this directly
no test coverage detected