Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork34.1k
Closed
Description
Bug report
Bug description:
Running this code:
importloggingclassX(Exception):def__getattr__(self,a):raiseKeyError(a)# !!!try:raiseX()exceptX:logging.getLogger().exception('')print('ok')
does not print "ok" but instead:
#python3.11 repro.py--- Logging error ---Traceback (most recent call last): File "/workspaces/cpython/repro.py", line 8, in <module> raise X()object address : 0x7f3007c67e80object refcount : 2object type : 0x7f3015bf0b20object type name: KeyErrorobject repr : KeyError('__notes__')lost sys.stderr
CPython versions tested on:
3.11, CPython main branch
Operating systems tested on:
Linux
Linked PRs
- gh-113358: Fix rendering tracebacks with exceptions with a broken __getattr__ #113359
- [3.12] gh-113358: Fix rendering tracebacks with exceptions with a broken __getattr__ (GH-113359) #114105
- [3.11] gh-113358: Fix rendering tracebacks with exceptions with a broken __getattr__ (GH-113359) #114109
- [3.11] gh-113358: Fix rendering tracebacks with exceptions with a broken __getattr__ (GH-113359) #114118
- [3.12] gh-113358: Fix rendering tracebacks with exceptions with a broken __getattr__ (GH-113359) #114173
- [3.11] gh-113358 Fix rendering tracebacks with exceptions with a broken __getattr__ : Normalize exception #114379