Optional method which writes data (bytes) to a file path (a str). Implementing this method allows for the writing of bytecode files.
(self, path, data)
| 782 | return self.set_data(cache_path, data) |
| 783 | |
| 784 | def set_data(self, path, data): |
| 785 | """Optional method which writes data (bytes) to a file path (a str). |
| 786 | |
| 787 | Implementing this method allows for the writing of bytecode files. |
| 788 | """ |
| 789 | |
| 790 | |
| 791 | def get_source(self, fullname): |