diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-04-02 21:18:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-04-02 21:18:34 (GMT) |
commit | 789be0c0a0656d17f831aa781cf7c5d55e5b4835 (patch) | |
tree | 8ce796bd726fcbbb4c9f19ae2d3601517ebbee91 /Doc/c-api/objbuffer.rst | |
parent | 48e3fd240fc6338fbcbbc9c1c8a7d118faca924a (diff) | |
download | cpython-789be0c0a0656d17f831aa781cf7c5d55e5b4835.zip cpython-789be0c0a0656d17f831aa781cf7c5d55e5b4835.tar.gz cpython-789be0c0a0656d17f831aa781cf7c5d55e5b4835.tar.bz2 |
Issue #2396: backport the memoryview object.
Diffstat (limited to 'Doc/c-api/objbuffer.rst')
-rw-r--r-- | Doc/c-api/objbuffer.rst | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/c-api/objbuffer.rst b/Doc/c-api/objbuffer.rst index 7d66db2..ba6e38f 100644 --- a/Doc/c-api/objbuffer.rst +++ b/Doc/c-api/objbuffer.rst @@ -2,8 +2,15 @@ .. _abstract-buffer: -Buffer Protocol -=============== + +Old Buffer Protocol +=================== + +This section describes the legacy buffer protocol, which has been introduced +in Python 1.6. It is still supported but deprecated in the Python 2.x series. +Python 3.0 introduces a new buffer protocol which fixes weaknesses and +shortcomings of the protocol, and has been backported to Python 2.6. +See :ref:`bufferobjects` for more information. .. cfunction:: int PyObject_AsCharBuffer(PyObject *obj, const char **buffer, Py_ssize_t *buffer_len) |