MCPcopy Create free account
hub / github.com/Vector35/debugger / __setattr__

Method __setattr__

api/python/debuggercontroller.py:52–56  ·  view source on GitHub ↗
(self, name, value)

Source from the content-addressed store, hash-verified

50 return hash((self.pid, self.pid))
51
52 def __setattr__(self, name, value):
53 try:
54 object.__setattr__(self, name, value)
55 except AttributeError:
56 raise AttributeError(f"attribute '{name}' is read only")
57
58 def __repr__(self):
59 return f"<DebugProcess: {self.pid:#x}, {self.name}>"

Callers

nothing calls this directly

Calls 1

__setattr__Method · 0.45

Tested by

no test coverage detected