diff options
author | Stefan Krah <skrah@bytereef.org> | 2015-08-08 12:33:28 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2015-08-08 12:33:28 (GMT) |
commit | 70e543b266d273217869091b90a3cedbe32b4a2e (patch) | |
tree | 2615139467bb6fa052635ec6f8c53187e600a341 /Doc/c-api/memoryview.rst | |
parent | 0c51595a784787d8e198af910cb6d79172ee52bb (diff) | |
download | cpython-70e543b266d273217869091b90a3cedbe32b4a2e.zip cpython-70e543b266d273217869091b90a3cedbe32b4a2e.tar.gz cpython-70e543b266d273217869091b90a3cedbe32b4a2e.tar.bz2 |
Issue #23756: Clarify the terms "contiguous" and "bytes-like object".
Patch by Martin Panter.
Diffstat (limited to 'Doc/c-api/memoryview.rst')
-rw-r--r-- | Doc/c-api/memoryview.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/memoryview.rst b/Doc/c-api/memoryview.rst index 5e50977..9f6bfd7 100644 --- a/Doc/c-api/memoryview.rst +++ b/Doc/c-api/memoryview.rst @@ -35,7 +35,7 @@ any other object. .. c:function:: PyObject *PyMemoryView_GetContiguous(PyObject *obj, int buffertype, char order) - Create a memoryview object to a contiguous chunk of memory (in either + Create a memoryview object to a :term:`contiguous` chunk of memory (in either 'C' or 'F'ortran *order*) from an object that defines the buffer interface. If memory is contiguous, the memoryview object points to the original memory. Otherwise, a copy is made and the memoryview points to a |