micropython/tests/thread/thread_exc2.py
Jim Mussared 4216bc7d13 tests: Replace umodule with module everywhere.
This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2023-06-08 17:54:24 +10:00

13 lines
202 B
Python

# test raising exception within thread which is not caught
import time
import _thread
def thread_entry():
raise ValueError
_thread.start_new_thread(thread_entry, ())
time.sleep(1)
print("done")