diff options
author | Tarek Ziade <tarek@ziade.org> | 2011-05-31 10:15:42 (GMT) |
---|---|---|
committer | Tarek Ziade <tarek@ziade.org> | 2011-05-31 10:15:42 (GMT) |
commit | e2655974cf631f21cd074904697163a5c6405f43 (patch) | |
tree | 54024c5f4ba61f2d687b2dcf8b00dd668d06cc1f | |
parent | 5a5ce388ed3d67cd32f83a00ccf00ebbeaecb323 (diff) | |
download | cpython-e2655974cf631f21cd074904697163a5c6405f43.zip cpython-e2655974cf631f21cd074904697163a5c6405f43.tar.gz cpython-e2655974cf631f21cd074904697163a5c6405f43.tar.bz2 |
code cleanup in packaging.run
-rw-r--r-- | Lib/packaging/run.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Lib/packaging/run.py b/Lib/packaging/run.py index 1a246c5..2d22bfd 100644 --- a/Lib/packaging/run.py +++ b/Lib/packaging/run.py @@ -351,7 +351,7 @@ def _list(dispatcher, args, **kw): number = 0 for dist in results: print('%s %s at %s' % (dist.name, dist.metadata['version'], dist.path)) - number +=1 + number += 1 print('') if number == 0: @@ -367,8 +367,9 @@ def _search(dispatcher, args, **kw): It is able to search for a specific index (specified with --index), using the simple or xmlrpc index types (with --type xmlrpc / --type simple) """ - opts = _parse_args(args[1:], '', ['simple', 'xmlrpc']) + #opts = _parse_args(args[1:], '', ['simple', 'xmlrpc']) # 1. what kind of index is requested ? (xmlrpc / simple) + raise NotImplementedError() actions = [ @@ -416,12 +417,9 @@ class Dispatcher: raise PackagingArgError(msg) self._set_logger() - - # for display options we return immediately - option_order = self.parser.get_option_order() - self.args = args + # for display options we return immediately if self.help or self.action is None: self._show_help(self.parser, display_options_=False) @@ -592,8 +590,6 @@ class Dispatcher: if isinstance(command, str): command = get_command_class(command) - name = command.get_command_name() - desc = getattr(command, 'description', '(no description available)') print('Description: %s' % desc) print('') |