Message127260
| 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:53 | ncoghlan | set | recipients:
+ ncoghlan, eli.bendersky, docs@python |
| 2011年01月28日 09:23:53 | ncoghlan | set | messageid: <1296206633.85.0.805425851768.issue11015@psf.upfronthosting.co.za> |
| 2011年01月28日 09:23:53 | ncoghlan | link | issue11015 messages |
| 2011年01月28日 09:23:52 | ncoghlan | create |
|