(self)
| 231 | return NotImplemented |
| 232 | |
| 233 | def pprint(self): |
| 234 | from prettyprinter import pprint as pp |
| 235 | pp(self) |
| 236 | |
| 237 | def add_taint(self, taint: Taints, context: Context, lock=False, taint_log: typing.Optional[TaintLog]=None) -> bool: |
| 238 | """ |
no outgoing calls
no test coverage detected