diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-09 22:15:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-09 22:15:27 (GMT) |
commit | 1b25b9284f111f23167837347f35e393572e770e (patch) | |
tree | 21db4ad94e2607f6e096df124d7c43f61f0a449c /Doc/library/functions.rst | |
parent | 3e84de05e02ec2497c3e75e17eaa08439f8421c5 (diff) | |
download | cpython-1b25b9284f111f23167837347f35e393572e770e.zip cpython-1b25b9284f111f23167837347f35e393572e770e.tar.gz cpython-1b25b9284f111f23167837347f35e393572e770e.tar.bz2 |
document the memoryview object a little
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index aa60be9..252ef02 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -665,9 +665,8 @@ are always available. They are listed here in alphabetical order. .. function:: memoryview(obj) - Return a "memory view" object created from the given argument. - - XXX: To be documented. + Return a "memory view" object created from the given argument. See + :ref:`typememoryview` for more information. .. function:: min(iterable[, args...], *[, key]) |