Bug report
>>> class A:
... def __getattr__(self, key):
... if key == 'foo': raise SystemExit('bye')
... def bar(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.
Linked PRs
Bug report
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.
Linked PRs
traceback#132387traceback(GH-132387) #133297