[Python-checkins] cpython: Tweak skipIf message

brett.cannon python-checkins at python.org
Wed Oct 2 16:59:05 CEST 2013


http://hg.python.org/cpython/rev/0474813e9df9
changeset:   85926:0474813e9df9
user:        Brett Cannon <brett at python.org>
date:        Wed Oct 02 10:58:58 2013 -0400
summary:
  Tweak skipIf message

files:
  Lib/test/test_inspect.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -2412,7 +2412,7 @@
         self.assertEqual(err, b'')
 
     @unittest.skipIf(ThreadPoolExecutor is None,
-            'multiprocessing required to test __qualname__ for source files')
+            'threads required to test __qualname__ for source files')
     def test_qualname_source(self):
         rc, out, err = assert_python_ok('-m', 'inspect',
                                      'concurrent.futures:ThreadPoolExecutor')

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list