summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-05 20:26:10 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-05 20:26:10 (GMT)
commit92bf919ed0da8d7f112f9659e6065976e382bae1 (patch)
tree1876e54c89f619563d8b4218bb7fa5f05eb86b0a /Modules
parent1a7b8d143965c281467379123187e0ef323380c3 (diff)
parentb757c83ec626442a8804b9417790443bf13b4fc8 (diff)
downloadcpython-92bf919ed0da8d7f112f9659e6065976e382bae1.zip
cpython-92bf919ed0da8d7f112f9659e6065976e382bae1.tar.gz
cpython-92bf919ed0da8d7f112f9659e6065976e382bae1.tar.bz2
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/arraymodule.c4
-rw-r--r--Modules/socketmodule.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index b7ef702..87bdb2c 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -1573,14 +1573,14 @@ frombytes(arrayobject *self, Py_buffer *buffer)
Py_ssize_t n;
if (buffer->itemsize != 1) {
PyBuffer_Release(buffer);
- PyErr_SetString(PyExc_TypeError, "string/buffer of bytes required.");
+ PyErr_SetString(PyExc_TypeError, "a bytes-like object is required");
return NULL;
}
n = buffer->len;
if (n % itemsize != 0) {
PyBuffer_Release(buffer);
PyErr_SetString(PyExc_ValueError,
- "string length not a multiple of item size");
+ "bytes length not a multiple of item size");
return NULL;
}
n = n / itemsize;
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index cb29821..68bfeb4 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -3560,7 +3560,7 @@ sock_sendmsg(PySocketSockObject *s, PyObject *args)
for (; ndatabufs < ndataparts; ndatabufs++) {
if (!PyArg_Parse(PySequence_Fast_GET_ITEM(data_fast, ndatabufs),
"y*;sendmsg() argument 1 must be an iterable of "
- "buffer-compatible objects",
+ "bytes-like objects",
&databufs[ndatabufs]))
goto finally;
iovs[ndatabufs].iov_base = databufs[ndatabufs].buf;
@@ -3717,12 +3717,12 @@ PyDoc_STRVAR(sendmsg_doc,
Send normal and ancillary data to the socket, gathering the\n\
non-ancillary data from a series of buffers and concatenating it into\n\
a single message. The buffers argument specifies the non-ancillary\n\
-data as an iterable of buffer-compatible objects (e.g. bytes objects).\n\
+data as an iterable of bytes-like objects (e.g. bytes objects).\n\
The ancdata argument specifies the ancillary data (control messages)\n\
as an iterable of zero or more tuples (cmsg_level, cmsg_type,\n\
cmsg_data), where cmsg_level and cmsg_type are integers specifying the\n\
protocol level and protocol-specific type respectively, and cmsg_data\n\
-is a buffer-compatible object holding the associated data. The flags\n\
+is a bytes-like object holding the associated data. The flags\n\
argument defaults to 0 and has the same meaning as for send(). If\n\
address is supplied and not None, it sets a destination address for\n\
the message. The return value is the number of bytes of non-ancillary\n\