[issue23768] assert on getting the representation of a thread in atexit function

2019-04-13 Thread Xavier de Gaye
Change by Xavier de Gaye : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue23768] assert on getting the representation of a thread in atexit function

2015-03-24 Thread Xavier de Gaye
New submission from Xavier de Gaye: The following 'thread_repr.py' script: -- import threading, atexit def foo(): print(threading.currentThread()) atexit.register(foo) gives the following output: --- Error in atexit._run_exitf