(self, path)
| 551 | self.written = {} |
| 552 | |
| 553 | def get_data(self, path): |
| 554 | if path == self.path: |
| 555 | return super().get_data(path) |
| 556 | elif path == self.bytecode_path: |
| 557 | return self.bytecode |
| 558 | else: |
| 559 | raise OSError |
| 560 | |
| 561 | def path_stats(self, path): |
| 562 | if path != self.path: |
no test coverage detected