summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-11-24 21:09:58 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-11-24 21:09:58 (GMT)
commit2b5d6ebfe5b6477cb5d5b6cd043c6350910b5656 (patch)
tree8d5f19e8ea61b080eeafba1bd056ecf7684cff9e /Misc
parent02c3b5cc308a6425ad0cfd23b7d53bc351bc1a4b (diff)
downloadcpython-2b5d6ebfe5b6477cb5d5b6cd043c6350910b5656.zip
cpython-2b5d6ebfe5b6477cb5d5b6cd043c6350910b5656.tar.gz
cpython-2b5d6ebfe5b6477cb5d5b6cd043c6350910b5656.tar.bz2
dbm.dumb was opening files without specifying the encoding. Caused problem on
at least OS X where the default is macroman. Closes issue #4382.
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 36cfe41..afc3982 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #4382: dbm.dumb did not specify the expected file encoding for opened
+ files.
+
- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
fail to properly display the error message.