thread module has been renamed to _thread in Python 3 (#64)

This commit is contained in:
dotlambda
2025-03-12 17:00:12 -07:00
committed by GitHub
parent 39a1fc78d8
commit 7197b82ed6
+4 -1
View File
@@ -1,7 +1,10 @@
from __future__ import print_function from __future__ import print_function
import time import time
import shelve import shelve
import thread try:
import thread
except:
import _thread as thread
import logging import logging
import urllib import urllib