summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-01-18 03:42:39 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-01-18 03:42:39 (GMT)
commitacd5f7bcebe9a341cf5d98425f228695dffab8e0 (patch)
tree76dd63b0bf9ad52a85d25d0b4749dd922088a31f
parent6e35d417f7d3c5c53b5904c1fce54ddfbf7214e4 (diff)
downloadcpython-acd5f7bcebe9a341cf5d98425f228695dffab8e0.zip
cpython-acd5f7bcebe9a341cf5d98425f228695dffab8e0.tar.gz
cpython-acd5f7bcebe9a341cf5d98425f228695dffab8e0.tar.bz2
#13665: s/string/bytes/ in error message.
-rw-r--r--Modules/_ctypes/cfield.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/cfield.c b/Modules/_ctypes/cfield.c
index ccaa3c9..e2d1e4b 100644
--- a/Modules/_ctypes/cfield.c
+++ b/Modules/_ctypes/cfield.c
@@ -1372,7 +1372,7 @@ z_set(void *ptr, PyObject *value, Py_ssize_t size)
_RET(value);
}
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);
return NULL;
}