mirror of
https://github.com/python/cpython.git
synced 2025-10-02 13:22:19 +00:00
Issue #25364: zipfile now works in threads disabled builds.
This commit is contained in:
commit
f98a24eecc
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -51,6 +51,8 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #25364: zipfile now works in threads disabled builds.
|
||||
|
||||
- Issue #25328: smtpd's SMTPChannel now correctly raises a ValueError if both
|
||||
decode_data and enable_SMTPUTF8 are set to true.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue