diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-13 17:27:13 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-13 17:27:13 (GMT) |
commit | 6864d30dfedc7325540fbed580dc35d24b56a41d (patch) | |
tree | 2887a1a1b3ca7686500b162c63201e242cbe9fec /Lib/distutils | |
parent | 59b103cf8776b9086bd9591f819e5f58f1b2c9da (diff) | |
download | cpython-6864d30dfedc7325540fbed580dc35d24b56a41d.zip cpython-6864d30dfedc7325540fbed580dc35d24b56a41d.tar.gz cpython-6864d30dfedc7325540fbed580dc35d24b56a41d.tar.bz2 |
Add depends=None to the arglist for compile().
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/mwerkscompiler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/mwerkscompiler.py b/Lib/distutils/mwerkscompiler.py index 6242f12..1f71c60 100644 --- a/Lib/distutils/mwerkscompiler.py +++ b/Lib/distutils/mwerkscompiler.py @@ -62,7 +62,8 @@ class MWerksCompiler (CCompiler) : include_dirs=None, debug=0, extra_preargs=None, - extra_postargs=None): + extra_postargs=None, + depends=None): (output_dir, macros, include_dirs) = \ self._fix_compile_args (output_dir, macros, include_dirs) self.__sources = sources |