Find arcadia relative path by module name
(self, fullname)
| 324 | return importer |
| 325 | |
| 326 | def _find_mod_path(self, fullname): |
| 327 | """Find arcadia relative path by module name""" |
| 328 | relpath = resfs_src(mod_path(fullname), resfs_file=True) |
| 329 | if relpath or not self.arcadia_source_finder: |
| 330 | return relpath |
| 331 | return self.arcadia_source_finder.get_module_path(fullname) |
| 332 | |
| 333 | def find_spec(self, fullname, path=None, target=None): |
| 334 | # Поддежка переопределения стандартного distutils из пакетом из setuptools |
no test coverage detected