(self, fileobj, final_filename, osutil)
| 796 | """ |
| 797 | |
| 798 | def _main(self, fileobj, final_filename, osutil): |
| 799 | fileobj.close() |
| 800 | osutil.rename_file(fileobj.name, final_filename) |
| 801 | |
| 802 | |
| 803 | class IOCloseTask(Task): |
nothing calls this directly
no test coverage detected