diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-11-25 19:19:17 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-11-25 19:19:17 (GMT) |
commit | 7317c1ef7aaba7deda66b7fa917d09e68d83635b (patch) | |
tree | 20de56e7bef3651ffbe837660673f76a1b54a1c5 /Misc | |
parent | 50d5a1c37324405104a097389515a0ef4f9705f3 (diff) | |
download | cpython-7317c1ef7aaba7deda66b7fa917d09e68d83635b.zip cpython-7317c1ef7aaba7deda66b7fa917d09e68d83635b.tar.gz cpython-7317c1ef7aaba7deda66b7fa917d09e68d83635b.tar.bz2 |
dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For the
former they are converted to bytes before being written to the DB.
Closes issue 3799. Reviewed by Skip Montanaro.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -28,6 +28,12 @@ Library - Issue #4383: When IDLE cannot make the connection to its subprocess, it would fail to properly display the error message. +Docs +---- + +- Issue #3799: Document that dbm.gnu and dbm.ndbm will accept string arguments + for keys and values which will be converted to bytes before committal. + What's New in Python 3.0 release candidate 3? ============================================= |