diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2023-02-06 12:15:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-06 12:15:32 -0500 |
| commit | b504971d65113b0fa603bf55199e2e032f041f8e (patch) | |
| tree | afbf4504ee4b74e05cc60c8ef07b703314de5180 /distutils/bcppcompiler.py | |
| parent | 2fe57ea40e9474964fd2bc45bfaabb7cebbdc949 (diff) | |
| parent | 1713e720352fc6797d07dd7b61e9bafaed7b8e20 (diff) | |
| download | python-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.py | 3 |
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]) |
