summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-11 15:18:03 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-11 15:18:03 (GMT)
commitcf4a2f29adb6bdae0b18e983250d7c48d486c9d6 (patch)
treecf63125e859ee00fba60e99935de6b30bb338a78 /Misc/NEWS
parent13be8c269155706bb22601518ba42a36e05ff361 (diff)
downloadcpython-cf4a2f29adb6bdae0b18e983250d7c48d486c9d6.zip
cpython-cf4a2f29adb6bdae0b18e983250d7c48d486c9d6.tar.gz
cpython-cf4a2f29adb6bdae0b18e983250d7c48d486c9d6.tar.bz2
Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
imp.reload(). Patch by Thomas Kluyver.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e52a480..a6073b8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
+ imp.reload(). Patch by Thomas Kluyver.
+
- Issue #23476: In the ssl module, enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST
flag on certificate stores when it is available.