(self)
| 112 | self.keys = loads_pyarrow(txn.get(b'__keys__')) |
| 113 | |
| 114 | def __len__(self): |
| 115 | return self.length |
| 116 | |
| 117 | def __getitem__(self, index): |
| 118 | # 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