(self)
| 123 | self.keys = loads_pyarrow(txn.get(b'__keys__')) |
| 124 | |
| 125 | def __len__(self): |
| 126 | return self.length |
| 127 | |
| 128 | def __getitem__(self, index): |
| 129 | # Delay loading LMDB data until after initialization: https://github.com/chainer/chainermn/issues/129 |
nothing calls this directly
no outgoing calls
no test coverage detected