Commit 5a144d8b authored by Tres Seaver's avatar Tres Seaver

Note that OIDs are bytes, not text.

parent 3769ede0
...@@ -1056,7 +1056,7 @@ cc_add_item(ccobject *self, PyObject *key, PyObject *v) ...@@ -1056,7 +1056,7 @@ cc_add_item(ccobject *self, PyObject *key, PyObject *v)
{ {
Py_DECREF(oid); Py_DECREF(oid);
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"Cached object oid must be a string, not a %s", "Cached object oid must be bytes, not a %s",
oid->ob_type->tp_name); oid->ob_type->tp_name);
return -1; return -1;
...@@ -1212,7 +1212,7 @@ cc_ass_sub(ccobject *self, PyObject *key, PyObject *v) ...@@ -1212,7 +1212,7 @@ cc_ass_sub(ccobject *self, PyObject *key, PyObject *v)
if (!PyBytes_Check(key)) if (!PyBytes_Check(key))
{ {
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"cPickleCache key must be a string, not a %s", "cPickleCache key must be bytes, not a %s",
key->ob_type->tp_name); key->ob_type->tp_name);
return -1; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment