summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-08-17 22:10:11 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-08-17 22:10:11 (GMT)
commit25c9d6aa00a3e3b97c23a7ebab1afb3feb526699 (patch)
tree1ff317afab1f6bb0602bc0ea5dc2aff71c7aa9a8 /Misc
parent313bda12e8dfe618c6ef2f3681b5ce02409891c8 (diff)
downloadcpython-25c9d6aa00a3e3b97c23a7ebab1afb3feb526699.zip
cpython-25c9d6aa00a3e3b97c23a7ebab1afb3feb526699.tar.gz
cpython-25c9d6aa00a3e3b97c23a7ebab1afb3feb526699.tar.bz2
Remove imports of 'warnings' that are no longer needed in dummy_thread,
filecmp, and shelve.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4a92186..99414d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,8 @@ Core and Builtins
Library
-------
+- Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread.
+
- Issue #3575: Incremental decoder's decode function now takes bytearray
by using 's*' instead of 't#'.