]> granicus.if.org Git - python/commitdiff
Doc: fix usage of deprecated config value "unused_docs", and a duplicate object name.
authorGeorg Brandl <georg@python.org>
Sat, 20 Sep 2014 22:42:40 +0000 (00:42 +0200)
committerGeorg Brandl <georg@python.org>
Sat, 20 Sep 2014 22:42:40 +0000 (00:42 +0200)
Doc/conf.py
Doc/library/repr.rst

index 5ed1140361739d8749d3e730cc75d6c9f6b5b985..c90ed59c04616cb1baa0ed03eed9e4fbc2994d74 100644 (file)
@@ -40,10 +40,10 @@ today = ''
 today_fmt = '%B %d, %Y'
 
 # List of files that shouldn't be included in the build.
-unused_docs = [
-    'maclib/scrap',
-    'library/xmllib',
-    'library/xml.etree',
+exclude_patterns = [
+    'maclib/scrap.rst',
+    'library/xmllib.rst',
+    'library/xml.etree.rst',
 ]
 
 # Ignore .rst in Sphinx its self.
index b60418613b06a89b2c4741f9d9f737541149cc04..7526cb6b1eb4053b5996b3100340783ea77fe1b0 100644 (file)
@@ -3,6 +3,7 @@
 
 .. module:: repr
    :synopsis: Alternate repr() implementation with size limits.
+   :noindex:
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
 
 .. note::