()
| 12 | |
| 13 | |
| 14 | def create_junk(): |
| 15 | fileh = tb.open_file(filename, mode="w") |
| 16 | for i in range(NOBJS): |
| 17 | fileh.create_array(fileh.root, "array" + str(i), [1]) |
| 18 | fileh.close() |
| 19 | |
| 20 | |
| 21 | def modify_junk_lru(): |
nothing calls this directly
no test coverage detected