summaryrefslogtreecommitdiff
path: root/Lib/distutils/util.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-10-01 23:49:30 +0000
committerGreg Ward <gward@python.net>2000-10-01 23:49:30 +0000
commit8e8f10fc6609dc2e9800a8fa7af4c31187c17c09 (patch)
tree3119ce56f0482c81dc212d53a3fce5e0499ddbcf /Lib/distutils/util.py
parent726843dd751e8f496e6f415dc162ff91441a10ec (diff)
downloadcpython-8e8f10fc6609dc2e9800a8fa7af4c31187c17c09.tar.gz
Tweaked 'byte_compile()' so it silently skips non-Python files, rather than
blowing up.
Diffstat (limited to 'Lib/distutils/util.py')
-rw-r--r--Lib/distutils/util.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py
index 03234847a6..563e47c4bd 100644
--- a/Lib/distutils/util.py
+++ b/Lib/distutils/util.py
@@ -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