comment on old Py2.x buffer protocol
authorStefan Behnel <scoder@users.berlios.de>
Tue, 2 Nov 2010 12:09:27 +0000 (13:09 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Tue, 2 Nov 2010 12:09:27 +0000 (13:09 +0100)
src/userguide/special_methods.rst

index 01d11f8b20fcb08eb1a01428632ae1aa11e26343..2272c62859502f034b62b17c41fb41b64568e66f 100644 (file)
@@ -361,9 +361,10 @@ Descriptor objects (see note 2)
 | __delete__           | self, instance                        |             |     Delete attribute                                |
 +-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
 
-.. note:: (1) The buffer interface is intended for use by C code and is not directly
+.. note:: (1) The buffer interface was intended for use by C code and is not directly
         accessible from Python. It is described in the Python/C API Reference Manual
-        under sections 6.6 and 10.6.
+        of Python 2.x under sections 6.6 and 10.6. It was superseded by the new
+        PEP 3118 buffer protocol in Python 2.6 and is no longer available in Python 3.
 
 .. note:: (2) Descriptor objects are part of the support mechanism for new-style
         Python classes. See the discussion of descriptors in the Python documentation.