()
| 41 | |
| 42 | |
| 43 | def check_open_close(): |
| 44 | for i in range(niter): |
| 45 | print( |
| 46 | "------------------ open_close #%s -------------------------" % i |
| 47 | ) |
| 48 | tref = clock() |
| 49 | fileh = tb.open_file(filename) |
| 50 | fileh.close() |
| 51 | show_stats("After closing file", tref) |
| 52 | |
| 53 | |
| 54 | def check_only_open(): |
nothing calls this directly
no test coverage detected