This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ncoghlan
Recipients docs@python, eli.bendersky, ncoghlan
Date 2011-01-28.09:23:52
SpamBayes Score 0.00065042387
Marked as misclassified No
Message-id <1296206633.85.0.805425851768.issue11015@psf.upfronthosting.co.za>
In-reply-to
Content
verbose isn't a boolean at all - it's an integer. You can supply it multiple times to bump the logging level up even higher than normal.

~/devel/py3k/Lib/test$ grep "verbose >" *.py
regrtest.py:                    if self.verbose > 1:
test_cmd_line_script.py:        if verbose > 1:
test_cmd_line_script.py:        if verbose > 1:
test_cmd_line_script.py:        if verbose > 1:
test_cmd_line_script.py:                if verbose > 1:
test_cmd_line_script.py:                    if verbose > 1:
test_fork1.py:                    if verbose > 1:
test_fork1.py:                    if verbose > 1:

(I didn't check explicitly, but I believe those verbose values are shorthand references to test.support.verbose)
History
Date User Action Args
2011-01-28 09:23:53ncoghlansetrecipients: + ncoghlan, eli.bendersky, docs@python
2011-01-28 09:23:53ncoghlansetmessageid: <1296206633.85.0.805425851768.issue11015@psf.upfronthosting.co.za>
2011-01-28 09:23:53ncoghlanlinkissue11015 messages
2011-01-28 09:23:52ncoghlancreate