Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions peps/pep-3118.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
PEP: 3118
Title: Revising the buffer protocol
Version: $Revision$
Last-Modified: $Date$
Author: Travis Oliphant <[email protected]>, Carl Banks <[email protected]>
Status: Final
Type: Standards Track
Content-Type: text/x-rst
Created: 28-Aug-2006
Python-Version: 3.0
Post-History:
Post-History: `09-Apr-2007 <https://mail.python.org/archives/list/[email protected]/thread/X7A5IP4VFJTVCQJSMBXGAH3BVB3A5C3T>`__

.. canonical-doc:: :external+python:ref:`bufferobjects`,
:external+python:c:type:`PyBufferProcs`,
:external+python:c:type:`PyMemoryView_FromObject`.

Some changes proposed here, like :ref:`3118-struct-additions` and
``PyObject_CopyToObject``, were not implemented.
This PEP targets Python 3.0, which was released more than a decade ago.
Any proposals to add missing functionality should
be discussed as new features, not treated as finishing the implementation
of this PEP.


Abstract
========
Expand Down Expand Up @@ -629,6 +638,8 @@ This will also be raised when a consumer requests a buffer from an
object that does not provide the protocol.


.. _3118-struct-additions:

Additions to the struct string-syntax
=====================================

Expand Down
Loading