Fix "make suspicious" errors and update ignore file.

This commit is contained in:
Georg Brandl 2011-01-15 17:05:20 +00:00
parent 375aec2315
commit 23e924f96b
3 changed files with 24 additions and 2 deletions

View File

@ -611,7 +611,7 @@ Example::
The ``:ref:`` invocation is replaced with the section title. The ``:ref:`` invocation is replaced with the section title.
Alternatively, you can reference any label (not just section titles) 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 Paragraph-level markup
---------------------- ----------------------

View File

@ -343,3 +343,25 @@ library/logging,,:message,severity:logger name:message
whatsnew/3.2,,:directory,... ${buildout:directory}/downloads/dist whatsnew/3.2,,:directory,... ${buildout:directory}/downloads/dist
whatsnew/3.2,,:location,... zope9-location = ${zope9:location} whatsnew/3.2,,:location,... zope9-location = ${zope9:location}
whatsnew/3.2,,:prefix,... zope-conf = ${custom:prefix}/etc/zope.conf 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

1 c-api/arg :ref PyArg_ParseTuple(args, "O|O:ref", &object, &callback)
343 whatsnew/3.2 :directory ... ${buildout:directory}/downloads/dist
344 whatsnew/3.2 :location ... zope9-location = ${zope9:location}
345 whatsnew/3.2 :prefix ... zope-conf = ${custom:prefix}/etc/zope.conf
346 howto/logging :root WARNING:root:Watch out!
347 howto/logging :Watch WARNING:root:Watch out!
348 howto/logging :root DEBUG:root:This message should go to the log file
349 howto/logging :This DEBUG:root:This message should go to the log file
350 howto/logging :root INFO:root:So should this
351 howto/logging :So INFO:root:So should this
352 howto/logging :root WARNING:root:And this, too
353 howto/logging :And WARNING:root:And this, too
354 howto/logging :root INFO:root:Started
355 howto/logging :Started INFO:root:Started
356 howto/logging :root INFO:root:Doing something
357 howto/logging :Doing INFO:root:Doing something
358 howto/logging :root INFO:root:Finished
359 howto/logging :Finished INFO:root:Finished
360 howto/logging :root WARNING:root:Look before you leap!
361 howto/logging :Look WARNING:root:Look before you leap!
362 howto/logging :This DEBUG:This message should appear on the console
363 howto/logging :So INFO:So should this
364 howto/logging :And WARNING:And this, too
365 howto/logging :logger severity:logger name:message
366 howto/logging :message severity:logger name:message
367 library/logging.handlers :port host:port

View File

@ -1035,7 +1035,7 @@ popen
----- -----
The :func:`os.popen` and :func:`subprocess.Popen` functions now support 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 gzip and zipfile
---------------- ----------------