Kaydet (Commit) acd5f7bc authored tarafından Ezio Melotti's avatar Ezio Melotti

#13665: s/string/bytes/ in error message.

üst 6e35d417
...@@ -1372,7 +1372,7 @@ z_set(void *ptr, PyObject *value, Py_ssize_t size) ...@@ -1372,7 +1372,7 @@ z_set(void *ptr, PyObject *value, Py_ssize_t size)
_RET(value); _RET(value);
} }
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"string or integer address expected instead of %s instance", "bytes or integer address expected instead of %s instance",
value->ob_type->tp_name); value->ob_type->tp_name);
return NULL; return NULL;
} }
......
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