mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
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 ........
This commit is contained in:
parent
6e61006cc2
commit
56a00deda2
2 changed files with 6 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue