(self, name, value)
| 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}>" |
nothing calls this directly
no test coverage detected