Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
Bug report
>>>classA:...def__getattr__(self,key):...ifkey=='foo':raiseSystemExit('bye')...defbar(self):...foo...>>>A().bar()bye# interperter exits :(
Originally found by@millerdev in#99140 (comment)
I think that this is not ideal. We probably want to silence all errors. I have a PR ready.