mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
#16518: Bring error messages in harmony with docs ("bytes-like object")
Some time ago we changed the docs to consistently use the term 'bytes-like object' in all the contexts where bytes, bytearray, memoryview, etc are used. This patch (by Ezio Melotti) completes that work by changing the error messages that previously reported that certain types did "not support the buffer interface" to instead say that a bytes-like object is required. (The glossary entry for bytes-like object references the discussion of the buffer protocol in the docs.)
This commit is contained in:
parent
d577cea8ab
commit
861470c836
11 changed files with 30 additions and 22 deletions
|
@ -1244,7 +1244,8 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
|
|||
supports it directly. */
|
||||
if (PyObject_GetBuffer(arg, (Py_buffer*)p, PyBUF_WRITABLE) < 0) {
|
||||
PyErr_Clear();
|
||||
return converterr("read-write buffer", arg, msgbuf, bufsize);
|
||||
return converterr("read-write bytes-like object",
|
||||
arg, msgbuf, bufsize);
|
||||
}
|
||||
if (!PyBuffer_IsContiguous((Py_buffer*)p, 'C')) {
|
||||
PyBuffer_Release((Py_buffer*)p);
|
||||
|
@ -1282,7 +1283,7 @@ convertbuffer(PyObject *arg, void **p, char **errmsg)
|
|||
*errmsg = NULL;
|
||||
*p = NULL;
|
||||
if (pb != NULL && pb->bf_releasebuffer != NULL) {
|
||||
*errmsg = "read-only pinned buffer";
|
||||
*errmsg = "read-only bytes-like object";
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -1298,7 +1299,7 @@ static int
|
|||
getbuffer(PyObject *arg, Py_buffer *view, char **errmsg)
|
||||
{
|
||||
if (PyObject_GetBuffer(arg, view, PyBUF_SIMPLE) != 0) {
|
||||
*errmsg = "bytes or buffer";
|
||||
*errmsg = "bytes-like object";
|
||||
return -1;
|
||||
}
|
||||
if (!PyBuffer_IsContiguous(view, 'C')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue