[Python-checkins] r86668 - python/branches/py3k/Lib/test/test_compileall.py

eric.araujo python-checkins at python.org
Mon Nov 22 03:42:43 CET 2010


Author: eric.araujo
Date: Mon Nov 22 03:42:43 2010
New Revision: 86668

Log:
Fix one compileall test (#10453).  Patch by Michele Orrù.


Modified:
   python/branches/py3k/Lib/test/test_compileall.py

Modified: python/branches/py3k/Lib/test/test_compileall.py
==============================================================================
--- python/branches/py3k/Lib/test/test_compileall.py	(original)
+++ python/branches/py3k/Lib/test/test_compileall.py	Mon Nov 22 03:42:43 2010
@@ -222,7 +222,7 @@
     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))
 


More information about the Python-checkins mailing list