Kaydet (Commit) 9e777730 authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka

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

üst 05da525e
...@@ -13,8 +13,11 @@ import stat ...@@ -13,8 +13,11 @@ import stat
import shutil import shutil
import struct import struct
import binascii import binascii
import threading
try:
import threading
except ImportError:
import dummy_threading as threading
try: try:
import zlib # We may need its compression method import zlib # We may need its compression method
......
...@@ -40,6 +40,8 @@ Core and Builtins ...@@ -40,6 +40,8 @@ Core and Builtins
Library Library
------- -------
- Issue #25364: zipfile now works in threads disabled builds.
- Issue #25328: smtpd's SMTPChannel now correctly raises a ValueError if both - Issue #25328: smtpd's SMTPChannel now correctly raises a ValueError if both
decode_data and enable_SMTPUTF8 are set to true. decode_data and enable_SMTPUTF8 are set to true.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment