diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-04 16:45:40 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-04 16:45:40 (GMT) |
commit | 088025fc5bb10711db53d16788c202e3852e3777 (patch) | |
tree | a22a656c25f78359c6469029f8356b41161924e7 /Lib/packaging/compiler | |
parent | ba661a9c398c1d75a036e0b56bba59ab7191eaa8 (diff) | |
download | cpython-088025fc5bb10711db53d16788c202e3852e3777.zip cpython-088025fc5bb10711db53d16788c202e3852e3777.tar.gz cpython-088025fc5bb10711db53d16788c202e3852e3777.tar.bz2 |
Use list constructor or built-in method instead of copy module
Diffstat (limited to 'Lib/packaging/compiler')
-rw-r--r-- | Lib/packaging/compiler/cygwinccompiler.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/packaging/compiler/cygwinccompiler.py b/Lib/packaging/compiler/cygwinccompiler.py index 7bfa611..348dbe7 100644 --- a/Lib/packaging/compiler/cygwinccompiler.py +++ b/Lib/packaging/compiler/cygwinccompiler.py @@ -48,7 +48,6 @@ of GCC (same as cygwin in no-cygwin mode). import os import sys -import copy from packaging import logger from packaging.compiler.unixccompiler import UnixCCompiler @@ -172,9 +171,9 @@ class CygwinCCompiler(UnixCCompiler): extra_postargs=None, build_temp=None, target_lang=None): """Link the objects.""" # use separate copies, so we can modify the lists - extra_preargs = copy.copy(extra_preargs or []) - libraries = copy.copy(libraries or []) - objects = copy.copy(objects or []) + extra_preargs = list(extra_preargs or []) + libraries = list(libraries or []) + objects = list(objects or []) # Additional libraries libraries.extend(self.dll_libraries) |