]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Tweaked 'byte_compile()' so it silently skips non-Python files, rather than
authorGreg Ward <gward@python.net>
Sun, 1 Oct 2000 23:49:30 +0000 (23:49 +0000)
committerGreg Ward <gward@python.net>
Sun, 1 Oct 2000 23:49:30 +0000 (23:49 +0000)
blowing up.

Lib/distutils/util.py

index 03234847a6294ebd7a8c8db4eac4091b639c73a2..563e47c4bd70041e5aed5b7230dff34c1bb8711f 100644 (file)
@@ -297,9 +297,10 @@ def byte_compile (py_files,
                   prefix=None, base_dir=None,
                   verbose=1, dry_run=0,
                   direct=None):
-    """Byte-compile a collection of Python source files to either
-    .pyc or .pyo files in the same directory.  'optimize' must be
-    one of the following:
+    """Byte-compile a collection of Python source files to either .pyc
+    or .pyo files in the same directory.  'py_files' is a list of files
+    to compile; any files that don't end in ".py" are silently skipped.
+    'optimize' must be one of the following:
       0 - don't optimize (generate .pyc)
       1 - normal optimization (like "python -O")
       2 - extra optimization (like "python -OO")
@@ -378,8 +379,9 @@ byte_compile(files, optimize=%s, force=%s,
 
         for file in py_files:
             if file[-3:] != ".py":
-                raise ValueError, \
-                      "invalid filename: %s doesn't end with '.py'" % `file`
+                # This lets us be lazy and not filter filenames in
+                # the "install_lib" command.
+                continue
 
             # Terminology from the py_compile module:
             #   cfile - byte-compiled file