summaryrefslogtreecommitdiffstats
path: root/Modules/_dbmmodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-04-29 09:38:06 (GMT)
committerGitHub <noreply@github.com>2018-04-29 09:38:06 (GMT)
commit2e38cc39330bd7f3003652869b644110a97a78d8 (patch)
tree5f1a63d9c23d486cdbf8a588e442d3c307917b07 /Modules/_dbmmodule.c
parent577948329976985ea9bef23d9a6c3dd7108211bf (diff)
downloadcpython-2e38cc39330bd7f3003652869b644110a97a78d8.zip
cpython-2e38cc39330bd7f3003652869b644110a97a78d8.tar.gz
cpython-2e38cc39330bd7f3003652869b644110a97a78d8.tar.bz2
bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630)
Diffstat (limited to 'Modules/_dbmmodule.c')
-rw-r--r--Modules/_dbmmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_dbmmodule.c b/Modules/_dbmmodule.c
index 8afd92c..65761d8 100644
--- a/Modules/_dbmmodule.c
+++ b/Modules/_dbmmodule.c
@@ -274,7 +274,7 @@ static PySequenceMethods dbm_as_sequence = {
_dbm.dbm.get
key: str(accept={str, robuffer}, zeroes=True)
- default: object(c_default="NULL") = b''
+ default: object = None
/
Return the value for key if present, otherwise default.
@@ -283,7 +283,7 @@ Return the value for key if present, otherwise default.
static PyObject *
_dbm_dbm_get_impl(dbmobject *self, const char *key,
Py_ssize_clean_t key_length, PyObject *default_value)
-/*[clinic end generated code: output=b44f95eba8203d93 input=a3a279957f85eb6d]*/
+/*[clinic end generated code: output=b44f95eba8203d93 input=b788eba0ffad2e91]*/
/*[clinic end generated code: output=4f5c0e523eaf1251 input=9402c0af8582dc69]*/
{
datum dbm_key, val;