(self, path)
| 638 | self.written = {} |
| 639 | |
| 640 | def get_data(self, path): |
| 641 | if path == self.path: |
| 642 | return super().get_data(path) |
| 643 | elif path == self.bytecode_path: |
| 644 | return self.bytecode |
| 645 | else: |
| 646 | raise OSError |
| 647 | |
| 648 | def path_stats(self, path): |
| 649 | if path != self.path: |
no test coverage detected