()
| 32 | |
| 33 | |
| 34 | def modify_junk_lru2(): |
| 35 | fileh = tb.open_file(filename, "a") |
| 36 | group = fileh.root |
| 37 | for j in range(5): |
| 38 | t1 = clock() |
| 39 | for i in range(100): # The number |
| 40 | # print("table-->", tt._v_name) |
| 41 | _ = getattr(group, "array" + str(i)) |
| 42 | # d = _.read() |
| 43 | print(f"iter and time --> {j + 1} {clock() - t1:.3f}") |
| 44 | fileh.close() |
| 45 | |
| 46 | |
| 47 | if 1: |
no test coverage detected