diff options
author | Andre Delfino <adelfino@gmail.com> | 2018-12-05 16:45:30 -0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-12-05 21:45:30 +0200 |
commit | 55f41e45b4318cbe19209f5144641344d0049fb8 (patch) | |
tree | ec0b6422a595cf8cfbae67d0525f6644b9314833 /Doc/c-api | |
parent | 1ce853f37783575e2b3aaa159ddcebc8660830ef (diff) | |
download | cpython-git-55f41e45b4318cbe19209f5144641344d0049fb8.tar.gz |
Correct a couple of unbalanced parenthesis. (GH-10779)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/buffer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst index 5a9a46fc67..33abb5bb94 100644 --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -198,7 +198,7 @@ a buffer, see :c:func:`PyObject_GetBuffer`. indicates that no de-referencing should occur (striding in a contiguous memory block). - If all suboffsets are negative (i.e. no de-referencing is needed, then + If all suboffsets are negative (i.e. no de-referencing is needed), then this field must be NULL (the default value). This type of array representation is used by the Python Imaging Library |