Is the given module one compiled by mypyc?
(self, module: str)
| 1155 | return echk.check_method_call_by_name("__next__", iterator, [], [], expr)[0] |
| 1156 | |
| 1157 | def is_native_module(self, module: str) -> bool: |
| 1158 | """Is the given module one compiled by mypyc?""" |
| 1159 | return self.mapper.is_native_module(module) |
| 1160 | |
| 1161 | def is_same_group_module(self, module: str) -> bool: |
| 1162 | """Is the given module in the same compilation group as the current module? |
no outgoing calls
no test coverage detected