diff options
author | Georg Brandl <georg@python.org> | 2010-10-06 06:49:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-06 06:49:22 (GMT) |
commit | 48a866c9ee3bd36f0eebcb608befbb6146352789 (patch) | |
tree | 11a9f2d47d527d682f181eafe1e38e7a18d8c990 | |
parent | 7955fb638abf63fb362c78ad064d9e4968aebe70 (diff) | |
download | cpython-48a866c9ee3bd36f0eebcb608befbb6146352789.zip cpython-48a866c9ee3bd36f0eebcb608befbb6146352789.tar.gz cpython-48a866c9ee3bd36f0eebcb608befbb6146352789.tar.bz2 |
Work around a bug in Sphinx 0.6.x.
-rw-r--r-- | Doc/c-api/buffer.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst index 3203031..a703fd6 100644 --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -222,8 +222,10 @@ Buffer-related functions contiguous buffer. If this is not given then shape will be *NULL*. .. cmacro:: PyBUF_C_CONTIGUOUS - PyBUF_F_CONTIGUOUS - PyBUF_ANY_CONTIGUOUS + + .. cmacro:: PyBUF_F_CONTIGUOUS + + .. cmacro:: PyBUF_ANY_CONTIGUOUS These flags indicate that the contiguity returned buffer must be respectively, C-contiguous (last dimension varies the fastest), Fortran |