فهرست منبع

Make use of a more elegant interface to threading in Python3

Yentl Van Tendeloo 7 سال پیش
والد
کامیت
eb263e072d
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      src/python_sccd/python_sccd_runtime/statecharts_core.py

+ 3 - 2
src/python_sccd/python_sccd_runtime/statecharts_core.py

@@ -8,9 +8,10 @@ import threading
 import sys
 
 try:
-    import _thread as thread
-except ImportError:
     import thread
+except ImportError:
+    import threading as thread
+
 import traceback
 import math
 from heapq import heappush, heappop, heapify