Open
Description
Bug report
Bug description:
There are no colored exceptions in atexit module. Like this:
import atexit
def foo():
raise Exception('foo')
atexit.register(foo)
Exception ignored in atexit callback <function foo at 0x00000114C7D5C720>:
Traceback (most recent call last):
File "...", line 3, in foo
raise Exception('foo')
Exception: foo
Python 3.13.3
Windows 10
CPython versions tested on:
3.13
Operating systems tested on:
Windows