MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __delattr__

Method __delattr__

examples/custom_attributes/custom_management.py:71–75  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

69 self._goofy_dict[key] = value
70
71 def __delattr__(self, key):
72 if is_instrumented(self, key):
73 del_attribute(self, key)
74 else:
75 del self._goofy_dict[key]
76
77
78if __name__ == "__main__":

Callers

nothing calls this directly

Calls 2

is_instrumentedFunction · 0.90
del_attributeFunction · 0.90

Tested by

no test coverage detected