diff options
author | Michael Felt <aixtools@users.noreply.github.com> | 2018-12-28 14:03:17 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2018-12-28 14:03:17 (GMT) |
commit | ed57e13df60ce28ba89bd49c9c5a15b1d9bf79c7 (patch) | |
tree | 3e670a883533a64957a8d9514a539fc8878c66b0 /Lib/distutils/command | |
parent | e2926b72488596f59e43c27f3b7cedf0c5b9e88e (diff) | |
download | cpython-ed57e13df60ce28ba89bd49c9c5a15b1d9bf79c7.zip cpython-ed57e13df60ce28ba89bd49c9c5a15b1d9bf79c7.tar.gz cpython-ed57e13df60ce28ba89bd49c9c5a15b1d9bf79c7.tar.bz2 |
bpo-11191: skip unsupported test_distutils case for AIX with xlc (GH-8709)
Command line options for the xlc compiler behave differently from gcc and clang,
so skip this test case for now when xlc is the compiler.
Patch by aixtools (Michael Felt)
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/config.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py index f511b88..aeda408 100644 --- a/Lib/distutils/command/config.py +++ b/Lib/distutils/command/config.py @@ -328,7 +328,6 @@ class config(Command): return self.try_cpp(body="/* No body */", headers=[header], include_dirs=include_dirs) - def dump_file(filename, head=None): """Dumps a file content into log.info. |