diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-11-25 19:19:17 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-11-25 19:19:17 (GMT) |
commit | 7317c1ef7aaba7deda66b7fa917d09e68d83635b (patch) | |
tree | 20de56e7bef3651ffbe837660673f76a1b54a1c5 /Modules/_gdbmmodule.c | |
parent | 50d5a1c37324405104a097389515a0ef4f9705f3 (diff) | |
download | cpython-7317c1ef7aaba7deda66b7fa917d09e68d83635b.zip cpython-7317c1ef7aaba7deda66b7fa917d09e68d83635b.tar.gz cpython-7317c1ef7aaba7deda66b7fa917d09e68d83635b.tar.bz2 |
dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For the
former they are converted to bytes before being written to the DB.
Closes issue 3799. Reviewed by Skip Montanaro.
Diffstat (limited to 'Modules/_gdbmmodule.c')
-rw-r--r-- | Modules/_gdbmmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_gdbmmodule.c b/Modules/_gdbmmodule.c index 590ef21..c6817fe 100644 --- a/Modules/_gdbmmodule.c +++ b/Modules/_gdbmmodule.c @@ -142,7 +142,7 @@ dbm_ass_sub(dbmobject *dp, PyObject *v, PyObject *w) if (!PyArg_Parse(v, "s#", &krec.dptr, &krec.dsize) ) { PyErr_SetString(PyExc_TypeError, - "gdbm mappings have string indices only"); + "gdbm mappings have bytes or string indices only"); return -1; } if (dp->di_dbm == NULL) { @@ -160,7 +160,7 @@ dbm_ass_sub(dbmobject *dp, PyObject *v, PyObject *w) else { if (!PyArg_Parse(w, "s#", &drec.dptr, &drec.dsize)) { PyErr_SetString(PyExc_TypeError, - "gdbm mappings have byte string elements only"); + "gdbm mappings have byte or string elements only"); return -1; } errno = 0; |