()
| 52 | |
| 53 | |
| 54 | def check_only_open(): |
| 55 | for i in range(niter): |
| 56 | print("------------------ only_open #%s -------------------------" % i) |
| 57 | tref = clock() |
| 58 | fileh = tb.open_file(filename) |
| 59 | show_stats("Before closing file", tref) |
| 60 | fileh.close() |
| 61 | |
| 62 | |
| 63 | def check_full_browse(): |
nothing calls this directly
no test coverage detected