Get a PyTables attribute from this node. This method has the behavior described in :meth:`Node._f_getattr`.
(self, name: str)
| 881 | |
| 882 | # Attribute handling |
| 883 | def get_attr(self, name: str) -> Any: |
| 884 | """Get a PyTables attribute from this node. |
| 885 | |
| 886 | This method has the behavior described in :meth:`Node._f_getattr`. |
| 887 | |
| 888 | """ |
| 889 | return self._f_getattr(name) |
| 890 | |
| 891 | def set_attr(self, name: str, value: Any) -> None: |
| 892 | """Set a PyTables attribute for this node. |