Return the metadata for the path.
(self, path)
| 964 | """Concrete implementation of SourceLoader using the file system.""" |
| 965 | |
| 966 | def path_stats(self, path): |
| 967 | """Return the metadata for the path.""" |
| 968 | st = _path_stat(path) |
| 969 | return {'mtime': st.st_mtime, 'size': st.st_size} |
| 970 | |
| 971 | def _cache_bytecode(self, source_path, bytecode_path, data): |
| 972 | # Adapt between the two APIs |