Fix wording / typography, and a slightly misleading statement

(memoryviews don't support complex structures right now)
This commit is contained in:
Antoine Pitrou 2010-04-03 21:22:38 +00:00
parent 60fccd2f79
commit 945d4ccdd9
1 changed files with 5 additions and 5 deletions

View File

@ -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)