diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-17 22:59:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-17 22:59:21 (GMT) |
commit | f2fa87b02daa69211c72224898cf8119e7f1d114 (patch) | |
tree | 7ef146a4f2b851c960b33f1c52d7aef0bf13ba87 /Doc/c-api/buffer.rst | |
parent | 5478b47355724de2ad891eea469fd8a1e674dccd (diff) | |
download | cpython-f2fa87b02daa69211c72224898cf8119e7f1d114.zip cpython-f2fa87b02daa69211c72224898cf8119e7f1d114.tar.gz cpython-f2fa87b02daa69211c72224898cf8119e7f1d114.tar.bz2 |
shut up a few sphinx warnings
Diffstat (limited to 'Doc/c-api/buffer.rst')
-rw-r--r-- | Doc/c-api/buffer.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst index 1d880c7..703b7bc 100644 --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -50,6 +50,7 @@ could be used to pass around structured data in its native, in-memory format. A pointer to the start of the memory for the object. .. cmember:: Py_ssize_t len + :noindex: The total length of the memory in bytes. @@ -58,6 +59,7 @@ could be used to pass around structured data in its native, in-memory format. An indicator of whether the buffer is read only. .. cmember:: const char *format + :noindex: A *NULL* terminated string in :mod:`struct` module style syntax giving the contents of the elements available through the buffer. If this is *NULL*, |