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)
| 799 | return self.set_data(cache_path, data) |
| 800 | |
| 801 | def set_data(self, path, data): |
| 802 | """Optional method which writes data (bytes) to a file path (a str). |
| 803 | |
| 804 | Implementing this method allows for the writing of bytecode files. |
| 805 | """ |
| 806 | |
| 807 | |
| 808 | def get_source(self, fullname): |