()
| 730 | |
| 731 | @contextmanager |
| 732 | def _resumable_file_manager(): |
| 733 | with open(incomplete_path, "a+b") as f: |
| 734 | yield f |
| 735 | |
| 736 | temp_file_manager = _resumable_file_manager |
| 737 | if os.path.exists(incomplete_path): |
nothing calls this directly
no outgoing calls
no test coverage detected