]> granicus.if.org Git - python/commitdiff
shut up a few sphinx warnings
authorBenjamin Peterson <benjamin@python.org>
Wed, 17 Sep 2008 22:59:21 +0000 (22:59 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 17 Sep 2008 22:59:21 +0000 (22:59 +0000)
Doc/c-api/buffer.rst
Doc/glossary.rst

index 1d880c782409e147cafe52e0369f0116fc5440c8..703b7bcd3f3156cdfa814506fcdb18ccbed37551 100644 (file)
@@ -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*,
index 424f6792ae7b685463977dabeec4de0a1474b141..1adf779a5a1299f42c31807e1553f245984cb5aa 100644 (file)
@@ -430,8 +430,6 @@ Glossary
       versatile features like :attr:`__slots__`, descriptors, properties,
       :meth:`__getattribute__`, class methods, and static methods.
 
-      More information can be found in :ref:`newstyle`.
-
    object
       Any data with state (attributes or value) and defined behavior
       (methods).  Also the ultimate base class of any :term:`new-style