(self, node)
| 365 | raise ValueError("host PyTables file is already closed!") |
| 366 | |
| 367 | def _check_node(self, node): |
| 368 | if not isinstance(node, tb.EArray): |
| 369 | raise TypeError('the "node" parameter should be a tables.EArray') |
| 370 | if not isinstance(node.atom, tb.UInt8Atom): |
| 371 | raise TypeError('only nodes with atom "UInt8Atom" are allowed') |
| 372 | |
| 373 | def _check_mode(self, mode): |
| 374 | if not isinstance(mode, str): |