]> granicus.if.org Git - python/commitdiff
compileall uses repr() to format filenames/paths
authorVictor Stinner <victor.stinner@haypocalc.com>
Mon, 21 Feb 2011 20:58:02 +0000 (20:58 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Mon, 21 Feb 2011 20:58:02 +0000 (20:58 +0000)
Issue #11169: compileall module uses repr() to format filenames and paths to
escape surrogate characters and show spaces.

Lib/compileall.py
Lib/test/test_compileall.py
Misc/NEWS

index d79a1bb9a092c40892eb7a97fa62ebe36abff527..743be2766412c29f63ca84aefa71e6fc25864723 100644 (file)
@@ -35,11 +35,11 @@ def compile_dir(dir, maxlevels=10, ddir=None, force=False, rx=None,
     optimize:  optimization level or -1 for level of the interpreter
     """
     if not quiet:
-        print('Listing', dir, '...')
+        print('Listing {!r}...'.format(dir))
     try:
         names = os.listdir(dir)
     except os.error:
-        print("Can't list", dir)
+        print("Can't list {!r}".format(dir))
         names = []
     names.sort()
     success = 1
@@ -109,13 +109,13 @@ def compile_file(fullname, ddir=None, force=False, rx=None, quiet=False,
                 except IOError:
                     pass
             if not quiet:
-                print('Compiling', fullname, '...')
+                print('Compiling {!r}...'.format(fullname))
             try:
                 ok = py_compile.compile(fullname, cfile, dfile, True,
                                         optimize=optimize)
             except py_compile.PyCompileError as err:
                 if quiet:
-                    print('*** Error compiling', fullname, '...')
+                    print('*** Error compiling {!r}...'.format(fullname))
                 else:
                     print('*** ', end='')
                 # escape non-printable characters in msg
@@ -126,7 +126,7 @@ def compile_file(fullname, ddir=None, force=False, rx=None, quiet=False,
                 success = 0
             except (SyntaxError, UnicodeError, IOError) as e:
                 if quiet:
-                    print('*** Error compiling', fullname, '...')
+                    print('*** Error compiling {!r}...'.format(fullname))
                 else:
                     print('*** ', end='')
                 print(e.__class__.__name__ + ':', e)
index 250d31b42e411ede28f9c47125099db625a09790..a63af4c0fd278f141e1e412fd0590eaf245beb68 100644 (file)
@@ -345,7 +345,7 @@ class CommandLineTests(unittest.TestCase):
 
     def test_invalid_arg_produces_message(self):
         out = self.assertRunOK('badfilename')
-        self.assertRegex(out, b"Can't list badfilename")
+        self.assertRegex(out, b"Can't list 'badfilename'")
 
 
 def test_main():
index e9113209cf389ec65061aed0b5355e03322878e9..64d4bbc447397da5c93ac0c9012a8719a11e219d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #11169: compileall module uses repr() to format filenames and paths to
+  escape surrogate characters and show spaces.
+
 - Issue #11089: Fix performance issue limiting the use of ConfigParser()
   with large config files.