summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-04-29 11:50:26 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-04-29 11:50:26 (GMT)
commitee95feb69d937149bef3d245e87df1aef412b7fc (patch)
treee006b3c754dff27577a127ec85a5f6fda873f9db /Misc
parent1487c37e7e85e7221adc3030f0f7de023cc99ced (diff)
downloadcpython-ee95feb69d937149bef3d245e87df1aef412b7fc.zip
cpython-ee95feb69d937149bef3d245e87df1aef412b7fc.tar.gz
cpython-ee95feb69d937149bef3d245e87df1aef412b7fc.tar.bz2
[3.7] bpo-33383: Fix crash in get() of the dbm.ndbm database object. (GH-6630) (GH-6631)
(cherry picked from commit 2e38cc39330bd7f3003652869b644110a97a78d8) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-04-29-11-15-38.bpo-33383.g32YWn.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-04-29-11-15-38.bpo-33383.g32YWn.rst b/Misc/NEWS.d/next/Library/2018-04-29-11-15-38.bpo-33383.g32YWn.rst
new file mode 100644
index 0000000..7b65baa
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-04-29-11-15-38.bpo-33383.g32YWn.rst
@@ -0,0 +1,2 @@
+Fixed crash in the get() method of the :mod:`dbm.ndbm` database object when
+it is called with a single argument.