projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
870e0e8
)
Fix one compileall test (#10453). Patch by Michele Orrù.
author
Éric Araujo
<merwok@netwok.org>
Mon, 22 Nov 2010 02:42:43 +0000
(
02:42
+0000)
committer
Éric Araujo
<merwok@netwok.org>
Mon, 22 Nov 2010 02:42:43 +0000
(
02:42
+0000)
Lib/test/test_compileall.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_compileall.py
b/Lib/test/test_compileall.py
index dd0962f20a835b5c70fe01d9617f4071939ebcb2..35b98f3eddb3a621875474982c0607a063dfac13 100644
(file)
--- a/
Lib/test/test_compileall.py
+++ b/
Lib/test/test_compileall.py
@@
-222,7
+222,7
@@
class CommandLineTests(unittest.TestCase):
def test_quiet(self):
noise = subprocess.getoutput('{} -m compileall {}'.format(
sys.executable, self.pkgdir))
- quiet = subprocess.getoutput(('{} -m compileall {}'.format(
+ quiet = subprocess.getoutput(('{} -m compileall
-f -q
{}'.format(
sys.executable, self.pkgdir)))
self.assertGreater(len(noise), len(quiet))