Issue #25364: zipfile now works in threads disabled builds.

This commit is contained in:
Serhiy Storchaka 2015-10-10 19:43:32 +03:00
parent 05da525e55
commit 9e777730eb
2 changed files with 6 additions and 1 deletions

View file

@ -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