[Python-checkins] r85241 - python/branches/release31-maint/Doc/c-api/buffer.rst

georg.brandl python-checkins at python.org
Wed Oct 6 08:49:22 CEST 2010


Author: georg.brandl
Date: Wed Oct  6 08:49:22 2010
New Revision: 85241

Log:
Work around a bug in Sphinx 0.6.x.

Modified:
   python/branches/release31-maint/Doc/c-api/buffer.rst

Modified: python/branches/release31-maint/Doc/c-api/buffer.rst
==============================================================================
--- python/branches/release31-maint/Doc/c-api/buffer.rst	(original)
+++ python/branches/release31-maint/Doc/c-api/buffer.rst	Wed Oct  6 08:49:22 2010
@@ -222,8 +222,10 @@
          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


More information about the Python-checkins mailing list