From: Antoine Pitrou Date: Sat, 3 Apr 2010 21:22:38 +0000 (+0000) Subject: Fix wording / typography, and a slightly misleading statement X-Git-Tag: v2.7b1~88 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=945d4ccdd98586ed52c938c7575bfb688f885b1f;p=python Fix wording / typography, and a slightly misleading statement (memoryviews don't support complex structures right now) --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index e5fdf663a8..330768589d 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)