(self, filename)
| 412 | return serializable_context_keys |
| 413 | |
| 414 | def _write_string_args(self, filename): |
| 415 | with open(filename, 'w') as file: |
| 416 | file.write('\n'.join(map(str, self.string_args))) |
| 417 | |
| 418 | def _read_result(self, filename): |
| 419 | if os.stat(filename).st_size == 0: |