Issue #25364: zipfile now works in threads disabled builds.
This commit is contained in:
commit
f98a24eecc
|
@ -13,8 +13,11 @@ import stat
|
|||
import shutil
|
||||
import struct
|
||||
import binascii
|
||||
import threading
|
||||
|
||||
try:
|
||||
import threading
|
||||
except ImportError:
|
||||
import dummy_threading as threading
|
||||
|
||||
try:
|
||||
import zlib # We may need its compression method
|
||||
|
|
Loading…
Reference in New Issue