diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-08-02 09:47:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-02 09:47:47 -0400 |
commit | 51b75e95de717a7d37bd1915a104a9e830fe5651 (patch) | |
tree | 76c7bf9f09dbcd9f78ff34e9c01c111d00e952f5 /distutils/ccompiler.py | |
parent | 30de1af5460998284435dc8ec63dc259f1ef96de (diff) | |
parent | 616e129944d87e578fe02146f07f72603a4c0124 (diff) | |
download | external_python_setuptools-51b75e95de717a7d37bd1915a104a9e830fe5651.tar.gz external_python_setuptools-51b75e95de717a7d37bd1915a104a9e830fe5651.tar.bz2 external_python_setuptools-51b75e95de717a7d37bd1915a104a9e830fe5651.zip |
Merge pull request #8 from pypa/bugfix/tests-for-msvc-spawn
Bugfix/tests for msvc spawn
Diffstat (limited to 'distutils/ccompiler.py')
-rw-r--r-- | distutils/ccompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distutils/ccompiler.py b/distutils/ccompiler.py index b5ef143e..57bb94e8 100644 --- a/distutils/ccompiler.py +++ b/distutils/ccompiler.py @@ -906,8 +906,8 @@ int main (int argc, char **argv) { def execute(self, func, args, msg=None, level=1): execute(func, args, msg, self.dry_run) - def spawn(self, cmd): - spawn(cmd, dry_run=self.dry_run) + def spawn(self, cmd, **kwargs): + spawn(cmd, dry_run=self.dry_run, **kwargs) def move_file(self, src, dst): return move_file(src, dst, dry_run=self.dry_run) |