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

Method __setattr__

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

Source from the content-addressed store, hash-verified

88 return hash((self.tid, self.rip))
89
90 def __setattr__(self, name, value):
91 try:
92 object.__setattr__(self, name, value)
93 except AttributeError:
94 raise AttributeError(f"attribute '{name}' is read only")
95
96 def __repr__(self):
97 return f"<DebugThread: {self.tid:#x} @ {self.rip:#x}>"

Callers

nothing calls this directly

Calls 1

__setattr__Method · 0.45

Tested by

no test coverage detected