summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-12-12 20:01:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-12-12 20:01:43 (GMT)
commitcc4edd59d65f6c1c31d1331a0a61681c09bb43dc (patch)
tree98828e762715772f3482591d6f1a13076f07e0e6 /Doc/library
parent8abc93580d2f0e74a1931fb25803a4b9fd8e0e7d (diff)
downloadcpython-cc4edd59d65f6c1c31d1331a0a61681c09bb43dc.zip
cpython-cc4edd59d65f6c1c31d1331a0a61681c09bb43dc.tar.gz
cpython-cc4edd59d65f6c1c31d1331a0a61681c09bb43dc.tar.bz2
Add link to the buffer protocol description from the memory description.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index b2931ae..e981214 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2279,8 +2279,8 @@ memoryview type
===============
:class:`memoryview` objects allow Python code to access the internal data
-of an object that supports the buffer protocol without copying. Memory
-is generally interpreted as simple bytes.
+of an object that supports the :ref:`buffer protocol <bufferobjects>` without
+copying. Memory is generally interpreted as simple bytes.
.. class:: memoryview(obj)