summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-11-24 21:09:58 +0000
committerBrett Cannon <bcannon@gmail.com>2008-11-24 21:09:58 +0000
commite457a439dfd2dab26dae62838860a8ac6e37983d (patch)
tree7679ffb8ed7af2d1b4cb30319531ac9b0d7b8b98 /Misc
parentb85e46acff6b04c53ec314639bf4efdef7cfee31 (diff)
downloadcpython-e457a439dfd2dab26dae62838860a8ac6e37983d.tar.gz
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 36cfe4163b..afc3982686 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.