diff options
author | Marco Rougeth <marco@rougeth.com> | 2019-04-29 23:23:28 (GMT) |
---|---|---|
committer | Brett Cannon <54418+brettcannon@users.noreply.github.com> | 2019-04-29 23:23:28 (GMT) |
commit | 81c5a905951aaf46f292eb459c32649c0b74ef61 (patch) | |
tree | 134df402ec716cc3e79dafc6a0ea1c8d80d8ffcb /Misc | |
parent | 9bdd6d1c2a61e0a27dba063e9eccf70e295f73a4 (diff) | |
download | cpython-81c5a905951aaf46f292eb459c32649c0b74ef61.zip cpython-81c5a905951aaf46f292eb459c32649c0b74ef61.tar.gz cpython-81c5a905951aaf46f292eb459c32649c0b74ef61.tar.bz2 |
bpo-36232: Improve error message on dbm.open() when the db doesn't exist (GH-12060)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-03-20-15-13-18.bpo-36366.n0eav_.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-04-06-20-25-25.bpo-36232.SClmhb.rst | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-03-20-15-13-18.bpo-36366.n0eav_.rst b/Misc/NEWS.d/next/Library/2019-03-20-15-13-18.bpo-36366.n0eav_.rst index a435048..8d1f9d9 100644 --- a/Misc/NEWS.d/next/Library/2019-03-20-15-13-18.bpo-36366.n0eav_.rst +++ b/Misc/NEWS.d/next/Library/2019-03-20-15-13-18.bpo-36366.n0eav_.rst @@ -1,4 +1,4 @@ Calling ``stop()`` on an unstarted or stopped :func:`unittest.mock.patch` object will now return `None` instead of raising :exc:`RuntimeError`, making the method idempotent. -Patch byKarthikeyan Singaravelan. +Patch by Karthikeyan Singaravelan. diff --git a/Misc/NEWS.d/next/Library/2019-04-06-20-25-25.bpo-36232.SClmhb.rst b/Misc/NEWS.d/next/Library/2019-04-06-20-25-25.bpo-36232.SClmhb.rst new file mode 100644 index 0000000..25290be --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-04-06-20-25-25.bpo-36232.SClmhb.rst @@ -0,0 +1,2 @@ +Improve error message when trying to open existing DBM database that +actually doesn't exist. Patch by Marco Rougeth. |