MCPcopy Create free account
hub / github.com/ronreiter/interactive-tutorials / __delattr__

Method __delattr__

suds/sudsobject.py:145–152  ·  view source on GitHub ↗
(self, name)

Source from the content-addressed store, hash-verified

143 self.__dict__[name] = value
144
145 def __delattr__(self, name):
146 try:
147 del self.__dict__[name]
148 if not is_builtin(name):
149 self.__keylist__.remove(name)
150 except:
151 cls = self.__class__.__name__
152 raise AttributeError("%s has no attribute '%s'" % (cls, name))
153
154 def __getitem__(self, name):
155 if isinstance(name, int):

Callers

nothing calls this directly

Calls 2

is_builtinFunction · 0.85
removeMethod · 0.80

Tested by

no test coverage detected