(self, path)
| 486 | return compile('', modname, 'exec', dont_inherit=True) |
| 487 | |
| 488 | def path_stats(self, path): |
| 489 | path = resfs_resolve(path, check_existence=False) |
| 490 | st = _path_stat(path) |
| 491 | return {'mtime': st.st_mtime, 'size': st.st_size} |
| 492 | |
| 493 | def is_package(self, fullname): |
| 494 | if fullname in self.memory: |
nothing calls this directly
no test coverage detected