diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-08 04:15:53 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-08 04:15:53 (GMT) |
commit | 0563a8ffd14c685fe1bf155e120b67a5e9311570 (patch) | |
tree | 3f8814e1caabaf5dd90ebb43a6dfdb6523e6074a /Objects | |
parent | d69390107a7e5e42c2cfae34fa79282a751d2dac (diff) | |
download | cpython-0563a8ffd14c685fe1bf155e120b67a5e9311570.zip cpython-0563a8ffd14c685fe1bf155e120b67a5e9311570.tar.gz cpython-0563a8ffd14c685fe1bf155e120b67a5e9311570.tar.bz2 |
Change the warning emitted for using the buffer() object; memoryview() in 3.0
is not an equivalent.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/bufferobject.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/bufferobject.c b/Objects/bufferobject.c index 9a5c39f..5b08e1e 100644 --- a/Objects/bufferobject.c +++ b/Objects/bufferobject.c @@ -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)) |