diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-25 00:06:52 +0300 | 
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-25 00:06:52 +0300 | 
| commit | 7d6392c517c6501d79541b4b2bdbfd661b9322a7 (patch) | |
| tree | 24c52ab5ecee266172aea43a5d57358969f898f8 /Modules/_gdbmmodule.c | |
| parent | 9da33ab193803922141f654f6d3cccdaed6b4866 (diff) | |
| download | cpython-git-7d6392c517c6501d79541b4b2bdbfd661b9322a7.tar.gz | |
Issue #19288: Fixed the "in" operator of dbm.gnu databases for string
argument.  Original patch by Arfrever Frehtes Taifersar Arahesis.
Diffstat (limited to 'Modules/_gdbmmodule.c')
| -rw-r--r-- | Modules/_gdbmmodule.c | 17 | 
1 files changed, 13 insertions, 4 deletions
diff --git a/Modules/_gdbmmodule.c b/Modules/_gdbmmodule.c index 474561b235..0bd59c8aa2 100644 --- a/Modules/_gdbmmodule.c +++ b/Modules/_gdbmmodule.c @@ -290,20 +290,29 @@ dbm_contains(PyObject *self, PyObject *arg)  {      dbmobject *dp = (dbmobject *)self;      datum key; +    Py_ssize_t size;      if ((dp)->di_dbm == NULL) {          PyErr_SetString(DbmError,                          "GDBM object has already been closed");          return -1;      } -    if (!PyBytes_Check(arg)) { +    if (PyUnicode_Check(arg)) { +        key.dptr = PyUnicode_AsUTF8AndSize(arg, &size); +        key.dsize = size; +        if (key.dptr == NULL) +            return -1; +    } +    else if (!PyBytes_Check(arg)) {          PyErr_Format(PyExc_TypeError, -                     "gdbm key must be bytes, not %.100s", +                     "gdbm key must be bytes or string, not %.100s",                       arg->ob_type->tp_name);          return -1;      } -    key.dptr = PyBytes_AS_STRING(arg); -    key.dsize = PyBytes_GET_SIZE(arg); +    else { +        key.dptr = PyBytes_AS_STRING(arg); +        key.dsize = PyBytes_GET_SIZE(arg); +    }      return gdbm_exists(dp->di_dbm, key);  }  | 
