Return the metadata for the path.
(self, path)
| 936 | """Concrete implementation of SourceLoader using the file system.""" |
| 937 | |
| 938 | def path_stats(self, path): |
| 939 | """Return the metadata for the path.""" |
| 940 | st = _path_stat(path) |
| 941 | return {'mtime': st.st_mtime, 'size': st.st_size} |
| 942 | |
| 943 | def _cache_bytecode(self, source_path, bytecode_path, data): |
| 944 | # Adapt between the two APIs |
no test coverage detected