()
| 61 | |
| 62 | |
| 63 | def check_full_browse(): |
| 64 | for i in range(niter): |
| 65 | print("------------------ full_browse #%s -----------------------" % i) |
| 66 | tref = clock() |
| 67 | fileh = tb.open_file(filename) |
| 68 | for node in fileh: |
| 69 | pass |
| 70 | fileh.close() |
| 71 | show_stats("After full browse", tref) |
| 72 | |
| 73 | |
| 74 | def check_partial_browse(): |
nothing calls this directly
no test coverage detected