()
| 72 | |
| 73 | |
| 74 | def modify_junk_lru3(): |
| 75 | fileh = tb.open_file(filename, "a") |
| 76 | group = fileh.root.newgroup |
| 77 | for j in range(3): |
| 78 | t1 = clock() |
| 79 | for tt in fileh.walk_nodes(group, "Table"): |
| 80 | tt.attrs.TITLE |
| 81 | for row in tt: |
| 82 | pass |
| 83 | print(f"iter and time --> {j + 1} {clock() - t1:.3f}") |
| 84 | fileh.close() |
| 85 | |
| 86 | |
| 87 | if 1: |
no test coverage detected