From a52eb88031620a81521b937f2a0651dbac2bb350 Mon Sep 17 00:00:00 2001 From: microDev <70126934+microDev1@users.noreply.github.com> Date: Mon, 15 Mar 2021 19:27:36 +0530 Subject: run code formatting script --- tests/thread/thread_exit2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/thread/thread_exit2.py') diff --git a/tests/thread/thread_exit2.py b/tests/thread/thread_exit2.py index 6bff8a173..ba9852b5c 100644 --- a/tests/thread/thread_exit2.py +++ b/tests/thread/thread_exit2.py @@ -10,12 +10,14 @@ except ImportError: import time import _thread + def thread_entry(): raise SystemExit + _thread.start_new_thread(thread_entry, ()) _thread.start_new_thread(thread_entry, ()) # wait for threads to finish time.sleep(1) -print('done') +print("done") -- cgit v1.2.3