| 6 | |
| 7 | |
| 8 | class BTreeDict(btree.BTreeDict): |
| 9 | # We mostly test with an in-order optimized BTreeDict with t=3 as that's how we |
| 10 | # generated the data. |
| 11 | def __init__(self, *, t=3, original=None): |
| 12 | super().__init__(t=t, original=original, in_order=True) |
| 13 | |
| 14 | |
| 15 | def add_keys(b, keys): |
no outgoing calls
searching dependent graphs…