(file_)
| 27 | |
| 28 | def SeekZero(function): |
| 29 | def decorated_function(file_): |
| 30 | file_.seek(0) |
| 31 | try: |
| 32 | return function(file_) |
| 33 | finally: |
| 34 | file_.seek(0) |
| 35 | return decorated_function |
| 36 | |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected