diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-02-05 20:47:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-05 20:47:31 (GMT) |
commit | 6c85efa5a66d7b254aa22a39d47f36c040d7a04e (patch) | |
tree | 9f9c5f626364ac0b1a768a27a694c4ae0b4e6e6b /Misc | |
parent | c309bcfb9fb295e70a235c461d9edcaa54c821d0 (diff) | |
download | cpython-6c85efa5a66d7b254aa22a39d47f36c040d7a04e.zip cpython-6c85efa5a66d7b254aa22a39d47f36c040d7a04e.tar.gz cpython-6c85efa5a66d7b254aa22a39d47f36c040d7a04e.tar.bz2 |
bpo-32749: Make dbm.dumb databases more cosistent with other dbm databases. (#5497)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-02-02-17-21-24.bpo-32749.u5scIn.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-02-02-17-21-24.bpo-32749.u5scIn.rst b/Misc/NEWS.d/next/Library/2018-02-02-17-21-24.bpo-32749.u5scIn.rst new file mode 100644 index 0000000..9665ff1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-02-02-17-21-24.bpo-32749.u5scIn.rst @@ -0,0 +1,3 @@ +A :mod:`dbm.dumb` database opened with flags 'r' is now read-only. +:func:`dbm.dumb.open` with flags 'r' and 'w' no longer creates a database if +it does not exist. |