diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-03-19 21:56:34 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-03-19 21:56:34 (GMT) |
commit | 7c4afcb1c4cc04d649db648c663fd50189b72034 (patch) | |
tree | 2ef3a5f0f9ea864820e7d7fb57e0b204da30a956 /Lib/distutils/tests | |
parent | f7239567ea354a9b0fc86daecf97bd88403c0c46 (diff) | |
download | cpython-7c4afcb1c4cc04d649db648c663fd50189b72034.zip cpython-7c4afcb1c4cc04d649db648c663fd50189b72034.tar.gz cpython-7c4afcb1c4cc04d649db648c663fd50189b72034.tar.bz2 |
Fixed #2698 - now reads the compiler option when creating the compiler
Diffstat (limited to 'Lib/distutils/tests')
-rw-r--r-- | Lib/distutils/tests/test_build_ext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_build_ext.py b/Lib/distutils/tests/test_build_ext.py index f992928..b7cdc20 100644 --- a/Lib/distutils/tests/test_build_ext.py +++ b/Lib/distutils/tests/test_build_ext.py @@ -329,6 +329,7 @@ class BuildExtTestCase(TempdirManager, self.assertEquals(so_dir, other_tmp_dir) cmd.inplace = 0 + cmd.compiler = None cmd.run() so_file = cmd.get_outputs()[0] self.assertTrue(os.path.exists(so_file)) |