Get a PyTables attribute from this node. If the named attribute does not exist, an AttributeError is raised.
(self, name: str)
| 901 | ) |
| 902 | |
| 903 | def _f_getattr(self, name: str) -> Any: |
| 904 | """Get a PyTables attribute from this node. |
| 905 | |
| 906 | If the named attribute does not exist, an AttributeError is |
| 907 | raised. |
| 908 | |
| 909 | """ |
| 910 | return getattr(self._v_attrs, name) |
| 911 | |
| 912 | def _f_setattr(self, name: str, value: Any) -> None: |
| 913 | """Set a PyTables attribute for this node. |
no outgoing calls