summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-03 21:22:38 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-03 21:22:38 (GMT)
commit945d4ccdd98586ed52c938c7575bfb688f885b1f (patch)
tree3c682c00b7421aada668134dc7e959bf2e36423e /Doc
parent60fccd2f79a2c92aa2a6afb3ec36d2c101c59334 (diff)
downloadcpython-945d4ccdd98586ed52c938c7575bfb688f885b1f.zip
cpython-945d4ccdd98586ed52c938c7575bfb688f885b1f.tar.gz
cpython-945d4ccdd98586ed52c938c7575bfb688f885b1f.tar.bz2
Fix wording / typography, and a slightly misleading statement
(memoryviews don't support complex structures right now)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index e5fdf66..3307685 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2539,12 +2539,12 @@ the particular object.
.. _typememoryview:
-memoryview Types
-================
+memoryview type
+===============
-:class:`memoryview`\s allow Python code to access the internal data of an object
-that supports the buffer protocol without copying. Memory can be interpreted as
-simple bytes or complex data structures.
+: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.
.. class:: memoryview(obj)