summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-11 15:31:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-11 15:31:33 (GMT)
commitca8b64461db5469fc4dc7e43cacb747046a0be53 (patch)
treea41afac14f69a0abd8ddf7cc12e52fee40d7cc53 /Misc
parent62e977f1b6d52a973304db9b0268aece99cb6c42 (diff)
parentcf4a2f29adb6bdae0b18e983250d7c48d486c9d6 (diff)
downloadcpython-ca8b64461db5469fc4dc7e43cacb747046a0be53.zip
cpython-ca8b64461db5469fc4dc7e43cacb747046a0be53.tar.gz
cpython-ca8b64461db5469fc4dc7e43cacb747046a0be53.tar.bz2
Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
imp.reload(). Patch by Thomas Kluyver.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d6b2583..6b116b3 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 #23605: os.walk() now calls os.scandir() instead of os.listdir().
The usage of os.scandir() reduces the number of calls to os.stat().
Initial patch written by Ben Hoyt.