Files
TencentOS-tiny/components/language/micropython/tests/thread/thread_exc2.py
2022-09-29 12:10:37 +08:00

13 lines
204 B
Python

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