()
| 724 | path_or_buffer = path_or_buffer / PICKLE_FILENAME |
| 725 | |
| 726 | def write_file(): |
| 727 | with _open_file_like(path_or_buffer, "wb") as f: |
| 728 | f.write(pickled_bytes) |
| 729 | |
| 730 | if global_dst_rank is not None: |
| 731 | assert isinstance( |
no test coverage detected