summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-07-06 12:21:58 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-07-06 12:21:58 +0300
commit0122ae9ac83afcad234aac80f77f90afabe342ea (patch)
treed0f671e0007eb5b1a785108aa37db5619b25e44d /Misc
parent9862b5194d5aa8f788d3fd38a3951d7d25d91352 (diff)
downloadcpython-git-0122ae9ac83afcad234aac80f77f90afabe342ea.tar.gz
Issue #21708: Deprecated dbm.dumb behavior that differs from common dbm
behavior: creating a database in 'r' and 'w' modes and modifying a database in 'r' mode.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c9a78d085d..fa5d7261fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,10 @@ Core and Builtins
Library
-------
+- Issue #21708: Deprecated dbm.dumb behavior that differs from common dbm
+ behavior: creating a database in 'r' and 'w' modes and modifying a database
+ in 'r' mode.
+
- Issue #26721: Change the socketserver.StreamRequestHandler.wfile attribute
to implement BufferedIOBase. In particular, the write() method no longer
does partial writes.