()
| 107 | |
| 108 | |
| 109 | def check_open_group(): |
| 110 | for i in range(niter): |
| 111 | print("------------------ open_group #%s ------------------------" % i) |
| 112 | tref = clock() |
| 113 | fileh = tb.open_file(filename) |
| 114 | group = fileh.root.ngroup0.ngroup1 |
| 115 | # Access to an attribute |
| 116 | _ = group._v_attrs.CLASS |
| 117 | fileh.close() |
| 118 | show_stats("After closing file", tref) |
| 119 | |
| 120 | |
| 121 | def check_open_leaf(): |
nothing calls this directly
no test coverage detected