[Python-checkins] r88033 - in python/branches/py3k/Doc: documenting/markup.rst tools/sphinxext/susp-ignored.csv whatsnew/3.2.rst

georg.brandl python-checkins at python.org
Sat Jan 15 18:05:20 CET 2011


Author: georg.brandl
Date: Sat Jan 15 18:05:20 2011
New Revision: 88033

Log:
Fix "make suspicious" errors and update ignore file.

Modified:
   python/branches/py3k/Doc/documenting/markup.rst
   python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/documenting/markup.rst
==============================================================================
--- python/branches/py3k/Doc/documenting/markup.rst	(original)
+++ python/branches/py3k/Doc/documenting/markup.rst	Sat Jan 15 18:05:20 2011
@@ -611,7 +611,7 @@
 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
 ----------------------

Modified: python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv
==============================================================================
--- python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv	(original)
+++ python/branches/py3k/Doc/tools/sphinxext/susp-ignored.csv	Sat Jan 15 18:05:20 2011
@@ -343,3 +343,25 @@
 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

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Sat Jan 15 18:05:20 2011
@@ -1035,7 +1035,7 @@
 -----
 
 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
 ----------------


More information about the Python-checkins mailing list