(self, item=None, parent=None)
| 113 | self.chunks_cache = LRUCache(capacity=10) |
| 114 | |
| 115 | def _create_node(self, item=None, parent=None): |
| 116 | self.current_ino += 1 |
| 117 | if item is not None: |
| 118 | self.set_inode(self.current_ino, item) |
| 119 | return DirEntry(self.current_ino, parent) |
| 120 | |
| 121 | def get_inode(self, ino): |
| 122 | packed = self.inodes.get(ino) |
no test coverage detected