summaryrefslogtreecommitdiff
path: root/Lib/distutils/dist.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-15 17:34:21 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-15 17:34:21 +0000
commit56a00deda295ec8432ade7b1b9de383af854a8da (patch)
tree68bc43f5cf6176b99c9049c0075677d29d1ed0cf /Lib/distutils/dist.py
parent6e61006cc2dfa6c07fa84126622685769bac635d (diff)
downloadcpython-git-56a00deda295ec8432ade7b1b9de383af854a8da.tar.gz
Merged revisions 72671 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72671 | antoine.pitrou | 2009-05-15 19:27:30 +0200 (ven., 15 mai 2009) | 3 lines Fix bootstrapping by removing uses of the copy module in distutils ........
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r--Lib/distutils/dist.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index 7c30e8856f..91adc4d37f 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -7,7 +7,6 @@ being built/installed/distributed.
__revision__ = "$Id$"
import sys, os, re
-from copy import copy
try:
import warnings
@@ -521,7 +520,7 @@ Common commands: (see '--help-commands' for more)
# merge it in with the global negative aliases.
negative_opt = self.negative_opt
if hasattr(cmd_class, 'negative_opt'):
- negative_opt = copy(negative_opt)
+ negative_opt = negative_opt.copy()
negative_opt.update(cmd_class.negative_opt)
# Check for help_options in command class. They have a different