(self, source_path, bytecode_path, data)
| 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 |
| 945 | mode = _calc_mode(source_path) |
| 946 | return self.set_data(bytecode_path, data, _mode=mode) |
| 947 | |
| 948 | def set_data(self, path, data, *, _mode=0o666): |
| 949 | """Write bytes data to a file.""" |
nothing calls this directly
no test coverage detected