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
+3
View File
@@ -1,7 +1,10 @@
from __future__ import print_function
import time
import shelve
try:
import thread
except:
import _thread as thread
import logging
import urllib