summaryrefslogtreecommitdiff
path: root/distutils/bcppcompiler.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2023-02-06 12:15:32 -0500
committerGitHub <noreply@github.com>2023-02-06 12:15:32 -0500
commitb504971d65113b0fa603bf55199e2e032f041f8e (patch)
treeafbf4504ee4b74e05cc60c8ef07b703314de5180 /distutils/bcppcompiler.py
parent2fe57ea40e9474964fd2bc45bfaabb7cebbdc949 (diff)
parent1713e720352fc6797d07dd7b61e9bafaed7b8e20 (diff)
downloadpython-setuptools-git-b504971d65113b0fa603bf55199e2e032f041f8e.tar.gz
Merge pull request #191 from DimitriPapadopoulos/refurb
Apply refurb suggestions
Diffstat (limited to 'distutils/bcppcompiler.py')
-rw-r--r--distutils/bcppcompiler.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/distutils/bcppcompiler.py b/distutils/bcppcompiler.py
index 5d6b8653..c38d57c6 100644
--- a/distutils/bcppcompiler.py
+++ b/distutils/bcppcompiler.py
@@ -294,8 +294,7 @@ class BCPPCompiler(CCompiler):
ld_args.append(libfile)
# some default libraries
- ld_args.append('import32')
- ld_args.append('cw32mt')
+ ld_args.extend(('import32', 'cw32mt'))
# def file for export symbols
ld_args.extend([',', def_file])