Change the warning emitted for using the buffer() object; memoryview() in 3.0
is not an equivalent.
This commit is contained in:
parent
d69390107a
commit
0563a8ffd1
|
@ -236,8 +236,7 @@ buffer_new(PyTypeObject *type, PyObject *args, PyObject *kw)
|
|||
Py_ssize_t offset = 0;
|
||||
Py_ssize_t size = Py_END_OF_BUFFER;
|
||||
|
||||
if (PyErr_WarnPy3k("buffer() not supported in 3.x; "
|
||||
"use memoryview()", 1) < 0)
|
||||
if (PyErr_WarnPy3k("buffer() not supported in 3.x", 1) < 0)
|
||||
return NULL;
|
||||
|
||||
if (!_PyArg_NoKeywords("buffer()", kw))
|
||||
|
|
Loading…
Reference in New Issue