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

Method __setattr__

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

Source from the content-addressed store, hash-verified

249 return hash((self.module, self.offset, self.address. self.enabled))
250
251 def __setattr__(self, name, value):
252 try:
253 object.__setattr__(self, name, value)
254 except AttributeError:
255 raise AttributeError(f"attribute '{name}' is read only")
256
257 def __repr__(self):
258 return f"<DebugBreakpoint: {self.module}:{self.offset:#x}, {self.address:#x}>"

Callers

nothing calls this directly

Calls 1

__setattr__Method · 0.45

Tested by

no test coverage detected