[Python-checkins] r79717 - python/trunk/Doc/library/stdtypes.rst

antoine.pitrou python-checkins at python.org
Sat Apr 3 23:22:38 CEST 2010


Author: antoine.pitrou
Date: Sat Apr  3 23:22:38 2010
New Revision: 79717

Log:
Fix wording / typography, and a slightly misleading statement
(memoryviews don't support complex structures right now)



Modified:
   python/trunk/Doc/library/stdtypes.rst

Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Sat Apr  3 23:22:38 2010
@@ -2539,12 +2539,12 @@
 
 .. _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)
 


More information about the Python-checkins mailing list