diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-23 09:23:15 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-23 09:23:15 (GMT) |
commit | 5633a8048fd8d59c9b23c98fb7e6419689b06316 (patch) | |
tree | e87ecd54a7197d6cd69ef0d82ae7dd7f8941c9a9 /Lib/distutils/tests/test_unixccompiler.py | |
parent | c3b0cd75b22aa09bd849a74fb92e22ba831dfcd4 (diff) | |
download | cpython-5633a8048fd8d59c9b23c98fb7e6419689b06316.zip cpython-5633a8048fd8d59c9b23c98fb7e6419689b06316.tar.gz cpython-5633a8048fd8d59c9b23c98fb7e6419689b06316.tar.bz2 |
taking sysconfig out of distutils
Diffstat (limited to 'Lib/distutils/tests/test_unixccompiler.py')
-rw-r--r-- | Lib/distutils/tests/test_unixccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_unixccompiler.py b/Lib/distutils/tests/test_unixccompiler.py index 008ae5d..6976dd5 100644 --- a/Lib/distutils/tests/test_unixccompiler.py +++ b/Lib/distutils/tests/test_unixccompiler.py @@ -1,8 +1,8 @@ """Tests for distutils.unixccompiler.""" import sys import unittest +import sysconfig -from distutils import sysconfig from distutils.unixccompiler import UnixCCompiler class UnixCCompilerTestCase(unittest.TestCase): |