MCPcopy Create free account
hub / github.com/PyTables/PyTables / _f_delattr

Method _f_delattr

tables/node.py:921–928  ·  view source on GitHub ↗

Delete a PyTables attribute from this node. If the named attribute does not exist, an AttributeError is raised.

(self, name: str)

Source from the content-addressed store, hash-verified

919 setattr(self._v_attrs, name, value)
920
921 def _f_delattr(self, name: str) -> None:
922 """Delete a PyTables attribute from this node.
923
924 If the named attribute does not exist, an AttributeError is
925 raised.
926
927 """
928 delattr(self._v_attrs, name)
929
930
931class NotLoggedMixin:

Callers 3

del_attrMethod · 0.80
del_node_attrMethod · 0.80
check_nameMethod · 0.80

Calls

no outgoing calls

Tested by 1

check_nameMethod · 0.64