summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-07 09:02:18 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-07 09:02:18 (GMT)
commit43153e4d49100b46a603afa8deeca415eb18d180 (patch)
tree85fcb5017fe9ce2b58baa853868c7b7fedee587b /Misc/NEWS
parentc29ba8b48962f59ffd5916731b35ac934f96304a (diff)
parent520348e5c0284668738e0ba98b86e7d1a5fd8600 (diff)
downloadcpython-43153e4d49100b46a603afa8deeca415eb18d180.zip
cpython-43153e4d49100b46a603afa8deeca415eb18d180.tar.gz
cpython-43153e4d49100b46a603afa8deeca415eb18d180.tar.bz2
Issue #28847: dbm.dumb now supports reading read-only files and no longer
writes the index file when it is not changed.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e52fbdb..d45f035 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -165,6 +165,9 @@ Core and Builtins
Library
-------
+- Issue #28847: dbm.dumb now supports reading read-only files and no longer
+ writes the index file when it is not changed.
+
- Issue #27030: Unknown escapes consisting of ``'\'`` and an ASCII letter in
re.sub() replacement templates regular expressions now are errors.