Set a PyTables attribute for this node. If the node already has a large number of attributes, a PerformanceWarning is issued.
(self, name: str, value: Any)
| 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. |
| 914 | |
| 915 | If the node already has a large number of attributes, a |
| 916 | PerformanceWarning is issued. |
| 917 | |
| 918 | """ |
| 919 | setattr(self._v_attrs, name, value) |
| 920 | |
| 921 | def _f_delattr(self, name: str) -> None: |
| 922 | """Delete a PyTables attribute from this node. |
no outgoing calls