[Python-checkins] cpython (merge 3.4 -> default): Issue #21707: Merge with 3.4.

berker.peksag python-checkins at python.org
Mon Jul 7 20:30:46 CEST 2014


http://hg.python.org/cpython/rev/e66c387da81b
changeset:   91588:e66c387da81b
parent:      91586:4813498eda65
parent:      91587:f8deaac44ed4
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Mon Jul 07 21:30:54 2014 +0300
summary:
  Issue #21707: Merge with 3.4.

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


diff --git a/Lib/test/test_modulefinder.py b/Lib/test/test_modulefinder.py
--- a/Lib/test/test_modulefinder.py
+++ b/Lib/test/test_modulefinder.py
@@ -316,7 +316,7 @@
             self._do_test(maybe_test, debug=2,
                           replace_paths=[(old_path, new_path)])
         output = output.getvalue()
-        expected = "co_filename '%s' changed to '%s'" % (old_path, new_path)
+        expected = "co_filename %r changed to %r" % (old_path, new_path)
         self.assertIn(expected, output)
 
 

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


More information about the Python-checkins mailing list