summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/dist.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-05-17 10:50:24 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-05-17 10:50:24 (GMT)
commitd2dd51dae9925f23f8d3353b8e5131955b01fcd3 (patch)
treeafb8ce738908048928ce5993d1414b0e75943067 /Lib/distutils/dist.py
parent38e2d8e263c0fb580b223a765eee8c3ed196324f (diff)
downloadcpython-d2dd51dae9925f23f8d3353b8e5131955b01fcd3.zip
cpython-d2dd51dae9925f23f8d3353b8e5131955b01fcd3.tar.gz
cpython-d2dd51dae9925f23f8d3353b8e5131955b01fcd3.tar.bz2
Merged revisions 72721 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72721 | tarek.ziade | 2009-05-17 12:44:12 +0200 (Sun, 17 May 2009) | 1 line removed sys.platform == 'mac' support in distutils.dist.parse_command_line and improved test coverage ........
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r--Lib/distutils/dist.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index 7969503..65c1ce9 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -408,11 +408,6 @@ Common commands: (see '--help-commands' for more)
# that allows the user to interactively specify the "command line".
#
toplevel_options = self._get_toplevel_options()
- if sys.platform == 'mac':
- import EasyDialogs
- cmdlist = self.get_command_list()
- self.script_args = EasyDialogs.GetArgv(
- toplevel_options + self.display_options, cmdlist)
# We have to parse the command line a bit at a time -- global
# options, then the first command, then its options, and so on --
@@ -432,7 +427,6 @@ Common commands: (see '--help-commands' for more)
# for display options we return immediately
if self.handle_display_options(option_order):
return
-
while args:
args = self._parse_command_opts(parser, args)
if args is None: # user asked for help (and got it)