summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-01-15 17:05:20 (GMT)
committerGeorg Brandl <georg@python.org>2011-01-15 17:05:20 (GMT)
commit23e924f96b78ac644eb54574de4bdca7d829840a (patch)
treebce3c3022d810bb4f9d068237d83fbb5b4631db1
parent375aec2315a497562c7ccb0baf12493090d0faf5 (diff)
downloadcpython-23e924f96b78ac644eb54574de4bdca7d829840a.zip
cpython-23e924f96b78ac644eb54574de4bdca7d829840a.tar.gz
cpython-23e924f96b78ac644eb54574de4bdca7d829840a.tar.bz2
Fix "make suspicious" errors and update ignore file.
-rw-r--r--Doc/documenting/markup.rst2
-rw-r--r--Doc/tools/sphinxext/susp-ignored.csv22
-rw-r--r--Doc/whatsnew/3.2.rst2
3 files changed, 24 insertions, 2 deletions
diff --git a/Doc/documenting/markup.rst b/Doc/documenting/markup.rst
index 69a6f12..277ca9f 100644
--- a/Doc/documenting/markup.rst
+++ b/Doc/documenting/markup.rst
@@ -611,7 +611,7 @@ Example::
The ``:ref:`` invocation is replaced with the section title.
Alternatively, you can reference any label (not just section titles)
-if you provide the link text ``:ref:`link text`<reference-label>```.
+if you provide the link text ``:ref:`link text <reference-label>```.
Paragraph-level markup
----------------------
diff --git a/Doc/tools/sphinxext/susp-ignored.csv b/Doc/tools/sphinxext/susp-ignored.csv
index 3482893..ad686a4 100644
--- a/Doc/tools/sphinxext/susp-ignored.csv
+++ b/Doc/tools/sphinxext/susp-ignored.csv
@@ -343,3 +343,25 @@ library/logging,,:message,severity:logger name:message
whatsnew/3.2,,:directory,... ${buildout:directory}/downloads/dist
whatsnew/3.2,,:location,... zope9-location = ${zope9:location}
whatsnew/3.2,,:prefix,... zope-conf = ${custom:prefix}/etc/zope.conf
+howto/logging,,:root,WARNING:root:Watch out!
+howto/logging,,:Watch,WARNING:root:Watch out!
+howto/logging,,:root,DEBUG:root:This message should go to the log file
+howto/logging,,:This,DEBUG:root:This message should go to the log file
+howto/logging,,:root,INFO:root:So should this
+howto/logging,,:So,INFO:root:So should this
+howto/logging,,:root,"WARNING:root:And this, too"
+howto/logging,,:And,"WARNING:root:And this, too"
+howto/logging,,:root,INFO:root:Started
+howto/logging,,:Started,INFO:root:Started
+howto/logging,,:root,INFO:root:Doing something
+howto/logging,,:Doing,INFO:root:Doing something
+howto/logging,,:root,INFO:root:Finished
+howto/logging,,:Finished,INFO:root:Finished
+howto/logging,,:root,WARNING:root:Look before you leap!
+howto/logging,,:Look,WARNING:root:Look before you leap!
+howto/logging,,:This,DEBUG:This message should appear on the console
+howto/logging,,:So,INFO:So should this
+howto/logging,,:And,"WARNING:And this, too"
+howto/logging,,:logger,severity:logger name:message
+howto/logging,,:message,severity:logger name:message
+library/logging.handlers,,:port,host:port
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 543df9c..ae6ff50 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -1035,7 +1035,7 @@ popen
-----
The :func:`os.popen` and :func:`subprocess.Popen` functions now support
-the :keyword:`with`-statement` for auto-closing of the file descriptors.
+the :keyword:`with` statement for auto-closing of the file descriptors.
gzip and zipfile
----------------