Merge 3.2
authorFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 28 Oct 2011 12:52:29 +0000 (14:52 +0200)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 28 Oct 2011 12:52:29 +0000 (14:52 +0200)
14 files changed:
1  2 
Lib/argparse.py
Lib/idlelib/rpc.py
Lib/logging/config.py
Lib/optparse.py
Lib/packaging/dist.py
Lib/packaging/run.py
Lib/pickle.py
Lib/pydoc.py
Lib/re.py
Lib/shutil.py
Lib/test/test_nntplib.py
Lib/timeit.py
Lib/tkinter/__init__.py
Misc/NEWS

diff --cc Lib/argparse.py
Simple merge
Simple merge
Simple merge
diff --cc Lib/optparse.py
Simple merge
index 3019b7c1665b9a12121df59e23d393f6192742ed,0000000000000000000000000000000000000000..4027d2387c52bfe85e5d2b2483e487c2cf81248e
mode 100644,000000..100644
--- /dev/null
@@@ -1,768 -1,0 +1,768 @@@
-                     if hasattr(func, '__call__'):
 +"""Class representing the project being built/installed/etc."""
 +
 +import os
 +import re
 +
 +from packaging import logger
 +from packaging.util import strtobool, resolve_name
 +from packaging.config import Config
 +from packaging.errors import (PackagingOptionError, PackagingArgError,
 +                              PackagingModuleError, PackagingClassError)
 +from packaging.command import get_command_class, STANDARD_COMMANDS
 +from packaging.command.cmd import Command
 +from packaging.metadata import Metadata
 +from packaging.fancy_getopt import FancyGetopt
 +
 +# Regex to define acceptable Packaging command names.  This is not *quite*
 +# the same as a Python name -- leading underscores are not allowed.  The fact
 +# that they're very similar is no coincidence: the default naming scheme is
 +# to look for a Python module named after the command.
 +command_re = re.compile(r'^[a-zA-Z]([a-zA-Z0-9_]*)$')
 +
 +USAGE = """\
 +usage: %(script)s [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
 +   or: %(script)s --help [cmd1 cmd2 ...]
 +   or: %(script)s --help-commands
 +   or: %(script)s cmd --help
 +"""
 +
 +
 +def gen_usage(script_name):
 +    script = os.path.basename(script_name)
 +    return USAGE % {'script': script}
 +
 +
 +class Distribution:
 +    """Class used to represent a project and work with it.
 +
 +    Most of the work hiding behind 'pysetup run' is really done within a
 +    Distribution instance, which farms the work out to the commands
 +    specified on the command line.
 +    """
 +
 +    # 'global_options' describes the command-line options that may be
 +    # supplied to the setup script prior to any actual commands.
 +    # Eg. "pysetup run -n" or "pysetup run --dry-run" both take advantage of
 +    # these global options.  This list should be kept to a bare minimum,
 +    # since every global option is also valid as a command option -- and we
 +    # don't want to pollute the commands with too many options that they
 +    # have minimal control over.
 +    global_options = [
 +        ('dry-run', 'n', "don't actually do anything"),
 +        ('help', 'h', "show detailed help message"),
 +        ('no-user-cfg', None, 'ignore pydistutils.cfg in your home directory'),
 +    ]
 +
 +    # 'common_usage' is a short (2-3 line) string describing the common
 +    # usage of the setup script.
 +    common_usage = """\
 +Common commands: (see '--help-commands' for more)
 +
 +  pysetup run build      will build the project underneath 'build/'
 +  pysetup run install    will install the project
 +"""
 +
 +    # options that are not propagated to the commands
 +    display_options = [
 +        ('help-commands', None,
 +         "list all available commands"),
 +        ('use-2to3', None,
 +         "use 2to3 to make source python 3.x compatible"),
 +        ('convert-2to3-doctests', None,
 +         "use 2to3 to convert doctests in seperate text files"),
 +        ]
 +    display_option_names = [x[0].replace('-', '_') for x in display_options]
 +
 +    # negative options are options that exclude other options
 +    negative_opt = {}
 +
 +    # -- Creation/initialization methods -------------------------------
 +    def __init__(self, attrs=None):
 +        """Construct a new Distribution instance: initialize all the
 +        attributes of a Distribution, and then use 'attrs' (a dictionary
 +        mapping attribute names to values) to assign some of those
 +        attributes their "real" values.  (Any attributes not mentioned in
 +        'attrs' will be assigned to some null value: 0, None, an empty list
 +        or dictionary, etc.)  Most importantly, initialize the
 +        'command_obj' attribute to the empty dictionary; this will be
 +        filled in with real command objects by 'parse_command_line()'.
 +        """
 +
 +        # Default values for our command-line options
 +        self.dry_run = False
 +        self.help = False
 +        for attr in self.display_option_names:
 +            setattr(self, attr, False)
 +
 +        # Store the configuration
 +        self.config = Config(self)
 +
 +        # Store the distribution metadata (name, version, author, and so
 +        # forth) in a separate object -- we're getting to have enough
 +        # information here (and enough command-line options) that it's
 +        # worth it.
 +        self.metadata = Metadata()
 +
 +        # 'cmdclass' maps command names to class objects, so we
 +        # can 1) quickly figure out which class to instantiate when
 +        # we need to create a new command object, and 2) have a way
 +        # for the setup script to override command classes
 +        self.cmdclass = {}
 +
 +        # 'script_name' and 'script_args' are usually set to sys.argv[0]
 +        # and sys.argv[1:], but they can be overridden when the caller is
 +        # not necessarily a setup script run from the command line.
 +        self.script_name = None
 +        self.script_args = None
 +
 +        # 'command_options' is where we store command options between
 +        # parsing them (from config files, the command line, etc.) and when
 +        # they are actually needed -- ie. when the command in question is
 +        # instantiated.  It is a dictionary of dictionaries of 2-tuples:
 +        #   command_options = { command_name : { option : (source, value) } }
 +        self.command_options = {}
 +
 +        # 'dist_files' is the list of (command, pyversion, file) that
 +        # have been created by any dist commands run so far. This is
 +        # filled regardless of whether the run is dry or not. pyversion
 +        # gives sysconfig.get_python_version() if the dist file is
 +        # specific to a Python version, 'any' if it is good for all
 +        # Python versions on the target platform, and '' for a source
 +        # file. pyversion should not be used to specify minimum or
 +        # maximum required Python versions; use the metainfo for that
 +        # instead.
 +        self.dist_files = []
 +
 +        # These options are really the business of various commands, rather
 +        # than of the Distribution itself.  We provide aliases for them in
 +        # Distribution as a convenience to the developer.
 +        self.packages = []
 +        self.package_data = {}
 +        self.package_dir = None
 +        self.py_modules = []
 +        self.libraries = []
 +        self.headers = []
 +        self.ext_modules = []
 +        self.ext_package = None
 +        self.include_dirs = []
 +        self.extra_path = None
 +        self.scripts = []
 +        self.data_files = {}
 +        self.password = ''
 +        self.use_2to3 = False
 +        self.convert_2to3_doctests = []
 +        self.extra_files = []
 +
 +        # And now initialize bookkeeping stuff that can't be supplied by
 +        # the caller at all.  'command_obj' maps command names to
 +        # Command instances -- that's how we enforce that every command
 +        # class is a singleton.
 +        self.command_obj = {}
 +
 +        # 'have_run' maps command names to boolean values; it keeps track
 +        # of whether we have actually run a particular command, to make it
 +        # cheap to "run" a command whenever we think we might need to -- if
 +        # it's already been done, no need for expensive filesystem
 +        # operations, we just check the 'have_run' dictionary and carry on.
 +        # It's only safe to query 'have_run' for a command class that has
 +        # been instantiated -- a false value will be inserted when the
 +        # command object is created, and replaced with a true value when
 +        # the command is successfully run.  Thus it's probably best to use
 +        # '.get()' rather than a straight lookup.
 +        self.have_run = {}
 +
 +        # Now we'll use the attrs dictionary (ultimately, keyword args from
 +        # the setup script) to possibly override any or all of these
 +        # distribution options.
 +
 +        if attrs is not None:
 +            # Pull out the set of command options and work on them
 +            # specifically.  Note that this order guarantees that aliased
 +            # command options will override any supplied redundantly
 +            # through the general options dictionary.
 +            options = attrs.get('options')
 +            if options is not None:
 +                del attrs['options']
 +                for command, cmd_options in options.items():
 +                    opt_dict = self.get_option_dict(command)
 +                    for opt, val in cmd_options.items():
 +                        opt_dict[opt] = ("setup script", val)
 +
 +            # Now work on the rest of the attributes.  Any attribute that's
 +            # not already defined is invalid!
 +            for key, val in attrs.items():
 +                if self.metadata.is_metadata_field(key):
 +                    self.metadata[key] = val
 +                elif hasattr(self, key):
 +                    setattr(self, key, val)
 +                else:
 +                    logger.warning(
 +                        'unknown argument given to Distribution: %r', key)
 +
 +        # no-user-cfg is handled before other command line args
 +        # because other args override the config files, and this
 +        # one is needed before we can load the config files.
 +        # If attrs['script_args'] wasn't passed, assume false.
 +        #
 +        # This also make sure we just look at the global options
 +        self.want_user_cfg = True
 +
 +        if self.script_args is not None:
 +            for arg in self.script_args:
 +                if not arg.startswith('-'):
 +                    break
 +                if arg == '--no-user-cfg':
 +                    self.want_user_cfg = False
 +                    break
 +
 +        self.finalize_options()
 +
 +    def get_option_dict(self, command):
 +        """Get the option dictionary for a given command.  If that
 +        command's option dictionary hasn't been created yet, then create it
 +        and return the new dictionary; otherwise, return the existing
 +        option dictionary.
 +        """
 +        d = self.command_options.get(command)
 +        if d is None:
 +            d = self.command_options[command] = {}
 +        return d
 +
 +    def get_fullname(self, filesafe=False):
 +        return self.metadata.get_fullname(filesafe)
 +
 +    def dump_option_dicts(self, header=None, commands=None, indent=""):
 +        from pprint import pformat
 +
 +        if commands is None:             # dump all command option dicts
 +            commands = sorted(self.command_options)
 +
 +        if header is not None:
 +            logger.info(indent + header)
 +            indent = indent + "  "
 +
 +        if not commands:
 +            logger.info(indent + "no commands known yet")
 +            return
 +
 +        for cmd_name in commands:
 +            opt_dict = self.command_options.get(cmd_name)
 +            if opt_dict is None:
 +                logger.info(indent + "no option dict for %r command",
 +                            cmd_name)
 +            else:
 +                logger.info(indent + "option dict for %r command:", cmd_name)
 +                out = pformat(opt_dict)
 +                for line in out.split('\n'):
 +                    logger.info(indent + "  " + line)
 +
 +    # -- Config file finding/parsing methods ---------------------------
 +    # XXX to be removed
 +    def parse_config_files(self, filenames=None):
 +        return self.config.parse_config_files(filenames)
 +
 +    def find_config_files(self):
 +        return self.config.find_config_files()
 +
 +    # -- Command-line parsing methods ----------------------------------
 +
 +    def parse_command_line(self):
 +        """Parse the setup script's command line, taken from the
 +        'script_args' instance attribute (which defaults to 'sys.argv[1:]'
 +        -- see 'setup()' in run.py).  This list is first processed for
 +        "global options" -- options that set attributes of the Distribution
 +        instance.  Then, it is alternately scanned for Packaging commands
 +        and options for that command.  Each new command terminates the
 +        options for the previous command.  The allowed options for a
 +        command are determined by the 'user_options' attribute of the
 +        command class -- thus, we have to be able to load command classes
 +        in order to parse the command line.  Any error in that 'options'
 +        attribute raises PackagingGetoptError; any error on the
 +        command line raises PackagingArgError.  If no Packaging commands
 +        were found on the command line, raises PackagingArgError.  Return
 +        true if command line was successfully parsed and we should carry
 +        on with executing commands; false if no errors but we shouldn't
 +        execute commands (currently, this only happens if user asks for
 +        help).
 +        """
 +        #
 +        # We now have enough information to show the Macintosh dialog
 +        # that allows the user to interactively specify the "command line".
 +        #
 +        toplevel_options = self._get_toplevel_options()
 +
 +        # We have to parse the command line a bit at a time -- global
 +        # options, then the first command, then its options, and so on --
 +        # because each command will be handled by a different class, and
 +        # the options that are valid for a particular class aren't known
 +        # until we have loaded the command class, which doesn't happen
 +        # until we know what the command is.
 +
 +        self.commands = []
 +        parser = FancyGetopt(toplevel_options + self.display_options)
 +        parser.set_negative_aliases(self.negative_opt)
 +        args = parser.getopt(args=self.script_args, object=self)
 +        option_order = parser.get_option_order()
 +
 +        # 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)
 +                return
 +
 +        # Handle the cases of --help as a "global" option, ie.
 +        # "pysetup run --help" and "pysetup run --help command ...".  For the
 +        # former, we show global options (--dry-run, etc.)
 +        # and display-only options (--name, --version, etc.); for the
 +        # latter, we omit the display-only options and show help for
 +        # each command listed on the command line.
 +        if self.help:
 +            self._show_help(parser,
 +                            display_options=len(self.commands) == 0,
 +                            commands=self.commands)
 +            return
 +
 +        return True
 +
 +    def _get_toplevel_options(self):
 +        """Return the non-display options recognized at the top level.
 +
 +        This includes options that are recognized *only* at the top
 +        level as well as options recognized for commands.
 +        """
 +        return self.global_options
 +
 +    def _parse_command_opts(self, parser, args):
 +        """Parse the command-line options for a single command.
 +        'parser' must be a FancyGetopt instance; 'args' must be the list
 +        of arguments, starting with the current command (whose options
 +        we are about to parse).  Returns a new version of 'args' with
 +        the next command at the front of the list; will be the empty
 +        list if there are no more commands on the command line.  Returns
 +        None if the user asked for help on this command.
 +        """
 +        # Pull the current command from the head of the command line
 +        command = args[0]
 +        if not command_re.match(command):
 +            raise SystemExit("invalid command name %r" % command)
 +        self.commands.append(command)
 +
 +        # Dig up the command class that implements this command, so we
 +        # 1) know that it's a valid command, and 2) know which options
 +        # it takes.
 +        try:
 +            cmd_class = get_command_class(command)
 +        except PackagingModuleError as msg:
 +            raise PackagingArgError(msg)
 +
 +        # XXX We want to push this in packaging.command
 +        #
 +        # Require that the command class be derived from Command -- want
 +        # to be sure that the basic "command" interface is implemented.
 +        for meth in ('initialize_options', 'finalize_options', 'run'):
 +            if hasattr(cmd_class, meth):
 +                continue
 +            raise PackagingClassError(
 +                'command %r must implement %r' % (cmd_class, meth))
 +
 +        # Also make sure that the command object provides a list of its
 +        # known options.
 +        if not (hasattr(cmd_class, 'user_options') and
 +                isinstance(cmd_class.user_options, list)):
 +            raise PackagingClassError(
 +                "command class %s must provide "
 +                "'user_options' attribute (a list of tuples)" % cmd_class)
 +
 +        # If the command class has a list of negative alias options,
 +        # merge it in with the global negative aliases.
 +        negative_opt = self.negative_opt
 +        if hasattr(cmd_class, '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
 +        # format (tuple of four) so we need to preprocess them here.
 +        if (hasattr(cmd_class, 'help_options') and
 +            isinstance(cmd_class.help_options, list)):
 +            help_options = cmd_class.help_options[:]
 +        else:
 +            help_options = []
 +
 +        # All commands support the global options too, just by adding
 +        # in 'global_options'.
 +        parser.set_option_table(self.global_options +
 +                                cmd_class.user_options +
 +                                help_options)
 +        parser.set_negative_aliases(negative_opt)
 +        args, opts = parser.getopt(args[1:])
 +        if hasattr(opts, 'help') and opts.help:
 +            self._show_help(parser, display_options=False,
 +                            commands=[cmd_class])
 +            return
 +
 +        if (hasattr(cmd_class, 'help_options') and
 +            isinstance(cmd_class.help_options, list)):
 +            help_option_found = False
 +            for help_option, short, desc, func in cmd_class.help_options:
 +                if hasattr(opts, help_option.replace('-', '_')):
 +                    help_option_found = True
-             if not hasattr(hook_obj, '__call__'):
++                    if callable(func):
 +                        func()
 +                    else:
 +                        raise PackagingClassError(
 +                            "invalid help function %r for help option %r: "
 +                            "must be a callable object (function, etc.)"
 +                            % (func, help_option))
 +
 +            if help_option_found:
 +                return
 +
 +        # Put the options from the command line into their official
 +        # holding pen, the 'command_options' dictionary.
 +        opt_dict = self.get_option_dict(command)
 +        for name, value in vars(opts).items():
 +            opt_dict[name] = ("command line", value)
 +
 +        return args
 +
 +    def finalize_options(self):
 +        """Set final values for all the options on the Distribution
 +        instance, analogous to the .finalize_options() method of Command
 +        objects.
 +        """
 +        if getattr(self, 'convert_2to3_doctests', None):
 +            self.convert_2to3_doctests = [os.path.join(p)
 +                                for p in self.convert_2to3_doctests]
 +        else:
 +            self.convert_2to3_doctests = []
 +
 +    def _show_help(self, parser, global_options=True, display_options=True,
 +                   commands=[]):
 +        """Show help for the setup script command line in the form of
 +        several lists of command-line options.  'parser' should be a
 +        FancyGetopt instance; do not expect it to be returned in the
 +        same state, as its option table will be reset to make it
 +        generate the correct help text.
 +
 +        If 'global_options' is true, lists the global options:
 +        --dry-run, etc.  If 'display_options' is true, lists
 +        the "display-only" options: --help-commands.  Finally,
 +        lists per-command help for every command name or command class
 +        in 'commands'.
 +        """
 +        if global_options:
 +            if display_options:
 +                options = self._get_toplevel_options()
 +            else:
 +                options = self.global_options
 +            parser.set_option_table(options)
 +            parser.print_help(self.common_usage + "\nGlobal options:")
 +            print()
 +
 +        if display_options:
 +            parser.set_option_table(self.display_options)
 +            parser.print_help(
 +                "Information display options (just display " +
 +                "information, ignore any commands)")
 +            print()
 +
 +        for command in self.commands:
 +            if isinstance(command, type) and issubclass(command, Command):
 +                cls = command
 +            else:
 +                cls = get_command_class(command)
 +            if (hasattr(cls, 'help_options') and
 +                isinstance(cls.help_options, list)):
 +                parser.set_option_table(cls.user_options + cls.help_options)
 +            else:
 +                parser.set_option_table(cls.user_options)
 +            parser.print_help("Options for %r command:" % cls.__name__)
 +            print()
 +
 +        print(gen_usage(self.script_name))
 +
 +    def handle_display_options(self, option_order):
 +        """If there were any non-global "display-only" options
 +        (--help-commands) on the command line, display the requested info and
 +        return true; else return false.
 +        """
 +        # User just wants a list of commands -- we'll print it out and stop
 +        # processing now (ie. if they ran "setup --help-commands foo bar",
 +        # we ignore "foo bar").
 +        if self.help_commands:
 +            self.print_commands()
 +            print()
 +            print(gen_usage(self.script_name))
 +            return True
 +
 +        # If user supplied any of the "display metadata" options, then
 +        # display that metadata in the order in which the user supplied the
 +        # metadata options.
 +        any_display_options = False
 +        is_display_option = set()
 +        for option in self.display_options:
 +            is_display_option.add(option[0])
 +
 +        for opt, val in option_order:
 +            if val and opt in is_display_option:
 +                opt = opt.replace('-', '_')
 +                value = self.metadata[opt]
 +                if opt in ('keywords', 'platform'):
 +                    print(','.join(value))
 +                elif opt in ('classifier', 'provides', 'requires',
 +                             'obsoletes'):
 +                    print('\n'.join(value))
 +                else:
 +                    print(value)
 +                any_display_options = True
 +
 +        return any_display_options
 +
 +    def print_command_list(self, commands, header, max_length):
 +        """Print a subset of the list of all commands -- used by
 +        'print_commands()'.
 +        """
 +        print(header + ":")
 +
 +        for cmd in commands:
 +            cls = self.cmdclass.get(cmd) or get_command_class(cmd)
 +            description = getattr(cls, 'description',
 +                                  '(no description available)')
 +
 +            print("  %-*s  %s" % (max_length, cmd, description))
 +
 +    def _get_command_groups(self):
 +        """Helper function to retrieve all the command class names divided
 +        into standard commands (listed in
 +        packaging.command.STANDARD_COMMANDS) and extra commands (given in
 +        self.cmdclass and not standard commands).
 +        """
 +        extra_commands = [cmd for cmd in self.cmdclass
 +                          if cmd not in STANDARD_COMMANDS]
 +        return STANDARD_COMMANDS, extra_commands
 +
 +    def print_commands(self):
 +        """Print out a help message listing all available commands with a
 +        description of each.  The list is divided into standard commands
 +        (listed in packaging.command.STANDARD_COMMANDS) and extra commands
 +        (given in self.cmdclass and not standard commands).  The
 +        descriptions come from the command class attribute
 +        'description'.
 +        """
 +        std_commands, extra_commands = self._get_command_groups()
 +        max_length = 0
 +        for cmd in (std_commands + extra_commands):
 +            if len(cmd) > max_length:
 +                max_length = len(cmd)
 +
 +        self.print_command_list(std_commands,
 +                                "Standard commands",
 +                                max_length)
 +        if extra_commands:
 +            print()
 +            self.print_command_list(extra_commands,
 +                                    "Extra commands",
 +                                    max_length)
 +
 +    # -- Command class/object methods ----------------------------------
 +
 +    def get_command_obj(self, command, create=True):
 +        """Return the command object for 'command'.  Normally this object
 +        is cached on a previous call to 'get_command_obj()'; if no command
 +        object for 'command' is in the cache, then we either create and
 +        return it (if 'create' is true) or return None.
 +        """
 +        cmd_obj = self.command_obj.get(command)
 +        if not cmd_obj and create:
 +            logger.debug("Distribution.get_command_obj(): "
 +                         "creating %r command object", command)
 +
 +            cls = get_command_class(command)
 +            cmd_obj = self.command_obj[command] = cls(self)
 +            self.have_run[command] = 0
 +
 +            # Set any options that were supplied in config files or on the
 +            # command line.  (XXX support for error reporting is suboptimal
 +            # here: errors aren't reported until finalize_options is called,
 +            # which means we won't report the source of the error.)
 +            options = self.command_options.get(command)
 +            if options:
 +                self._set_command_options(cmd_obj, options)
 +
 +        return cmd_obj
 +
 +    def _set_command_options(self, command_obj, option_dict=None):
 +        """Set the options for 'command_obj' from 'option_dict'.  Basically
 +        this means copying elements of a dictionary ('option_dict') to
 +        attributes of an instance ('command').
 +
 +        'command_obj' must be a Command instance.  If 'option_dict' is not
 +        supplied, uses the standard option dictionary for this command
 +        (from 'self.command_options').
 +        """
 +        command_name = command_obj.get_command_name()
 +        if option_dict is None:
 +            option_dict = self.get_option_dict(command_name)
 +
 +        logger.debug("  setting options for %r command:", command_name)
 +
 +        for option, (source, value) in option_dict.items():
 +            logger.debug("    %s = %s (from %s)", option, value, source)
 +            try:
 +                bool_opts = [x.replace('-', '_')
 +                             for x in command_obj.boolean_options]
 +            except AttributeError:
 +                bool_opts = []
 +            try:
 +                neg_opt = command_obj.negative_opt
 +            except AttributeError:
 +                neg_opt = {}
 +
 +            try:
 +                is_string = isinstance(value, str)
 +                if option in neg_opt and is_string:
 +                    setattr(command_obj, neg_opt[option], not strtobool(value))
 +                elif option in bool_opts and is_string:
 +                    setattr(command_obj, option, strtobool(value))
 +                elif hasattr(command_obj, option):
 +                    setattr(command_obj, option, value)
 +                else:
 +                    raise PackagingOptionError(
 +                        "error in %s: command %r has no such option %r" %
 +                        (source, command_name, option))
 +            except ValueError as msg:
 +                raise PackagingOptionError(msg)
 +
 +    def get_reinitialized_command(self, command, reinit_subcommands=False):
 +        """Reinitializes a command to the state it was in when first
 +        returned by 'get_command_obj()': ie., initialized but not yet
 +        finalized.  This provides the opportunity to sneak option
 +        values in programmatically, overriding or supplementing
 +        user-supplied values from the config files and command line.
 +        You'll have to re-finalize the command object (by calling
 +        'finalize_options()' or 'ensure_finalized()') before using it for
 +        real.
 +
 +        'command' should be a command name (string) or command object.  If
 +        'reinit_subcommands' is true, also reinitializes the command's
 +        sub-commands, as declared by the 'sub_commands' class attribute (if
 +        it has one).  See the "install_dist" command for an example.  Only
 +        reinitializes the sub-commands that actually matter, ie. those
 +        whose test predicates return true.
 +
 +        Returns the reinitialized command object.
 +        """
 +        if not isinstance(command, Command):
 +            command_name = command
 +            command = self.get_command_obj(command_name)
 +        else:
 +            command_name = command.get_command_name()
 +
 +        if not command.finalized:
 +            return command
 +
 +        command.initialize_options()
 +        self.have_run[command_name] = 0
 +        command.finalized = False
 +        self._set_command_options(command)
 +
 +        if reinit_subcommands:
 +            for sub in command.get_sub_commands():
 +                self.get_reinitialized_command(sub, reinit_subcommands)
 +
 +        return command
 +
 +    # -- Methods that operate on the Distribution ----------------------
 +
 +    def run_commands(self):
 +        """Run each command that was seen on the setup script command line.
 +        Uses the list of commands found and cache of command objects
 +        created by 'get_command_obj()'.
 +        """
 +        for cmd in self.commands:
 +            self.run_command(cmd)
 +
 +    # -- Methods that operate on its Commands --------------------------
 +
 +    def run_command(self, command, options=None):
 +        """Do whatever it takes to run a command (including nothing at all,
 +        if the command has already been run).  Specifically: if we have
 +        already created and run the command named by 'command', return
 +        silently without doing anything.  If the command named by 'command'
 +        doesn't even have a command object yet, create one.  Then invoke
 +        'run()' on that command object (or an existing one).
 +        """
 +        # Already been here, done that? then return silently.
 +        if self.have_run.get(command):
 +            return
 +
 +        if options is not None:
 +            self.command_options[command] = options
 +
 +        cmd_obj = self.get_command_obj(command)
 +        cmd_obj.ensure_finalized()
 +        self.run_command_hooks(cmd_obj, 'pre_hook')
 +        logger.info("running %s", command)
 +        cmd_obj.run()
 +        self.run_command_hooks(cmd_obj, 'post_hook')
 +        self.have_run[command] = 1
 +
 +    def run_command_hooks(self, cmd_obj, hook_kind):
 +        """Run hooks registered for that command and phase.
 +
 +        *cmd_obj* is a finalized command object; *hook_kind* is either
 +        'pre_hook' or 'post_hook'.
 +        """
 +        if hook_kind not in ('pre_hook', 'post_hook'):
 +            raise ValueError('invalid hook kind: %r' % hook_kind)
 +
 +        hooks = getattr(cmd_obj, hook_kind, None)
 +
 +        if hooks is None:
 +            return
 +
 +        for hook in hooks.values():
 +            if isinstance(hook, str):
 +                try:
 +                    hook_obj = resolve_name(hook)
 +                except ImportError as e:
 +                    raise PackagingModuleError(e)
 +            else:
 +                hook_obj = hook
 +
++            if not callable(hook_obj):
 +                raise PackagingOptionError('hook %r is not callable' % hook)
 +
 +            logger.info('running %s %s for command %s',
 +                        hook_kind, hook, cmd_obj.get_command_name())
 +            hook_obj(cmd_obj)
 +
 +    # -- Distribution query methods ------------------------------------
 +    def has_pure_modules(self):
 +        return len(self.packages or self.py_modules or []) > 0
 +
 +    def has_ext_modules(self):
 +        return self.ext_modules and len(self.ext_modules) > 0
 +
 +    def has_c_libraries(self):
 +        return self.libraries and len(self.libraries) > 0
 +
 +    def has_modules(self):
 +        return self.has_pure_modules() or self.has_ext_modules()
 +
 +    def has_headers(self):
 +        return self.headers and len(self.headers) > 0
 +
 +    def has_scripts(self):
 +        return self.scripts and len(self.scripts) > 0
 +
 +    def has_data_files(self):
 +        return self.data_files and len(self.data_files) > 0
 +
 +    def is_pure(self):
 +        return (self.has_pure_modules() and
 +                not self.has_ext_modules() and
 +                not self.has_c_libraries())
index 59ad6ee1753f162ab4ec247f3efbe18580fa8399,0000000000000000000000000000000000000000..671a4bfb17b57717be2f4fd3686f40deb614f16e
mode 100644,000000..100644
--- /dev/null
@@@ -1,666 -1,0 +1,666 @@@
-                     if hasattr(func, '__call__'):
 +"""Main command line parser.  Implements the pysetup script."""
 +
 +import os
 +import re
 +import sys
 +import getopt
 +import logging
 +
 +from packaging import logger
 +from packaging.dist import Distribution
 +from packaging.util import _is_archive_file, generate_setup_py
 +from packaging.command import get_command_class, STANDARD_COMMANDS
 +from packaging.install import install, install_local_project, remove
 +from packaging.database import get_distribution, get_distributions
 +from packaging.depgraph import generate_graph
 +from packaging.fancy_getopt import FancyGetopt
 +from packaging.errors import (PackagingArgError, PackagingError,
 +                              PackagingModuleError, PackagingClassError,
 +                              CCompilerError)
 +
 +
 +command_re = re.compile(r'^[a-zA-Z]([a-zA-Z0-9_]*)$')
 +
 +common_usage = """\
 +Actions:
 +%(actions)s
 +
 +To get more help on an action, use:
 +
 +    pysetup action --help
 +"""
 +
 +global_options = [
 +    # The fourth entry for verbose means that it can be repeated.
 +    ('verbose', 'v', "run verbosely (default)", True),
 +    ('quiet', 'q', "run quietly (turns verbosity off)"),
 +    ('dry-run', 'n', "don't actually do anything"),
 +    ('help', 'h', "show detailed help message"),
 +    ('no-user-cfg', None, 'ignore pydistutils.cfg in your home directory'),
 +    ('version', None, 'Display the version'),
 +]
 +
 +negative_opt = {'quiet': 'verbose'}
 +
 +display_options = [
 +    ('help-commands', None, "list all available commands"),
 +]
 +
 +display_option_names = [x[0].replace('-', '_') for x in display_options]
 +
 +
 +def _parse_args(args, options, long_options):
 +    """Transform sys.argv input into a dict.
 +
 +    :param args: the args to parse (i.e sys.argv)
 +    :param options: the list of options to pass to getopt
 +    :param long_options: the list of string with the names of the long options
 +                         to be passed to getopt.
 +
 +    The function returns a dict with options/long_options as keys and matching
 +    values as values.
 +    """
 +    optlist, args = getopt.gnu_getopt(args, options, long_options)
 +    optdict = {}
 +    optdict['args'] = args
 +    for k, v in optlist:
 +        k = k.lstrip('-')
 +        if k not in optdict:
 +            optdict[k] = []
 +            if v:
 +                optdict[k].append(v)
 +        else:
 +            optdict[k].append(v)
 +    return optdict
 +
 +
 +class action_help:
 +    """Prints a help message when the standard help flags: -h and --help
 +    are used on the commandline.
 +    """
 +
 +    def __init__(self, help_msg):
 +        self.help_msg = help_msg
 +
 +    def __call__(self, f):
 +        def wrapper(*args, **kwargs):
 +            f_args = args[1]
 +            if '--help' in f_args or '-h' in f_args:
 +                print(self.help_msg)
 +                return
 +            return f(*args, **kwargs)
 +        return wrapper
 +
 +
 +@action_help("""\
 +Usage: pysetup create
 +   or: pysetup create --help
 +
 +Create a new Python project.
 +""")
 +def _create(distpatcher, args, **kw):
 +    from packaging.create import main
 +    return main()
 +
 +
 +@action_help("""\
 +Usage: pysetup generate-setup
 +   or: pysetup generate-setup --help
 +
 +Generate a setup.py script for backward-compatibility purposes.
 +""")
 +def _generate(distpatcher, args, **kw):
 +    generate_setup_py()
 +    logger.info('The setup.py was generated')
 +
 +
 +@action_help("""\
 +Usage: pysetup graph dist
 +   or: pysetup graph --help
 +
 +Print dependency graph for the distribution.
 +
 +positional arguments:
 +   dist  installed distribution name
 +""")
 +def _graph(dispatcher, args, **kw):
 +    name = args[1]
 +    dist = get_distribution(name, use_egg_info=True)
 +    if dist is None:
 +        logger.warning('Distribution not found.')
 +        return 1
 +    else:
 +        dists = get_distributions(use_egg_info=True)
 +        graph = generate_graph(dists)
 +        print(graph.repr_node(dist))
 +
 +
 +@action_help("""\
 +Usage: pysetup install [dist]
 +   or: pysetup install [archive]
 +   or: pysetup install [src_dir]
 +   or: pysetup install --help
 +
 +Install a Python distribution from the indexes, source directory, or sdist.
 +
 +positional arguments:
 +   archive  path to source distribution (zip, tar.gz)
 +   dist     distribution name to install from the indexes
 +   scr_dir  path to source directory
 +""")
 +def _install(dispatcher, args, **kw):
 +    # first check if we are in a source directory
 +    if len(args) < 2:
 +        # are we inside a project dir?
 +        if os.path.isfile('setup.cfg') or os.path.isfile('setup.py'):
 +            args.insert(1, os.getcwd())
 +        else:
 +            logger.warning('No project to install.')
 +            return 1
 +
 +    target = args[1]
 +    # installing from a source dir or archive file?
 +    if os.path.isdir(target) or _is_archive_file(target):
 +        return not install_local_project(target)
 +    else:
 +        # download from PyPI
 +        return not install(target)
 +
 +
 +@action_help("""\
 +Usage: pysetup metadata [dist]
 +   or: pysetup metadata [dist] [-f field ...]
 +   or: pysetup metadata --help
 +
 +Print metadata for the distribution.
 +
 +positional arguments:
 +   dist  installed distribution name
 +
 +optional arguments:
 +   -f     metadata field to print; omit to get all fields
 +""")
 +def _metadata(dispatcher, args, **kw):
 +    opts = _parse_args(args[1:], 'f:', [])
 +    if opts['args']:
 +        name = opts['args'][0]
 +        dist = get_distribution(name, use_egg_info=True)
 +        if dist is None:
 +            logger.warning('%r not installed', name)
 +            return 1
 +    elif os.path.isfile('setup.cfg'):
 +        logger.info('searching local dir for metadata')
 +        dist = Distribution()  # XXX use config module
 +        dist.parse_config_files()
 +    else:
 +        logger.warning('no argument given and no local setup.cfg found')
 +        return 1
 +
 +    metadata = dist.metadata
 +
 +    if 'f' in opts:
 +        keys = (k for k in opts['f'] if k in metadata)
 +    else:
 +        keys = metadata.keys()
 +
 +    for key in keys:
 +        if key in metadata:
 +            print(metadata._convert_name(key) + ':')
 +            value = metadata[key]
 +            if isinstance(value, list):
 +                for v in value:
 +                    print('   ', v)
 +            else:
 +                print('   ', value.replace('\n', '\n    '))
 +
 +
 +@action_help("""\
 +Usage: pysetup remove dist [-y]
 +   or: pysetup remove --help
 +
 +Uninstall a Python distribution.
 +
 +positional arguments:
 +   dist  installed distribution name
 +
 +optional arguments:
 +   -y  auto confirm distribution removal
 +""")
 +def _remove(distpatcher, args, **kw):
 +    opts = _parse_args(args[1:], 'y', [])
 +    if 'y' in opts:
 +        auto_confirm = True
 +    else:
 +        auto_confirm = False
 +
 +    retcode = 0
 +    for dist in set(opts['args']):
 +        try:
 +            remove(dist, auto_confirm=auto_confirm)
 +        except PackagingError:
 +            logger.warning('%r not installed', dist)
 +            retcode = 1
 +
 +    return retcode
 +
 +
 +@action_help("""\
 +Usage: pysetup run [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
 +   or: pysetup run --help
 +   or: pysetup run --list-commands
 +   or: pysetup run cmd --help
 +""")
 +def _run(dispatcher, args, **kw):
 +    parser = dispatcher.parser
 +    args = args[1:]
 +
 +    commands = STANDARD_COMMANDS  # + extra commands
 +
 +    if args == ['--list-commands']:
 +        print('List of available commands:')
 +        cmds = sorted(commands)
 +
 +        for cmd in cmds:
 +            cls = dispatcher.cmdclass.get(cmd) or get_command_class(cmd)
 +            desc = getattr(cls, 'description',
 +                            '(no description available)')
 +            print('  %s: %s' % (cmd, desc))
 +        return
 +
 +    while args:
 +        args = dispatcher._parse_command_opts(parser, args)
 +        if args is None:
 +            return
 +
 +    # create the Distribution class
 +    # need to feed setup.cfg here !
 +    dist = Distribution()
 +
 +    # Find and parse the config file(s): they will override options from
 +    # the setup script, but be overridden by the command line.
 +
 +    # XXX still need to be extracted from Distribution
 +    dist.parse_config_files()
 +
 +    for cmd in dispatcher.commands:
 +        # FIXME need to catch MetadataMissingError here (from the check command
 +        # e.g.)--or catch any exception, print an error message and exit with 1
 +        dist.run_command(cmd, dispatcher.command_options[cmd])
 +
 +    return 0
 +
 +
 +@action_help("""\
 +Usage: pysetup list [dist ...]
 +   or: pysetup list --help
 +
 +Print name, version and location for the matching installed distributions.
 +
 +positional arguments:
 +   dist  installed distribution name; omit to get all distributions
 +""")
 +def _list(dispatcher, args, **kw):
 +    opts = _parse_args(args[1:], '', [])
 +    dists = get_distributions(use_egg_info=True)
 +    if opts['args']:
 +        results = (d for d in dists if d.name.lower() in opts['args'])
 +        listall = False
 +    else:
 +        results = dists
 +        listall = True
 +
 +    number = 0
 +    for dist in results:
 +        print('%r %s (from %r)' % (dist.name, dist.version, dist.path))
 +        number += 1
 +
 +    if number == 0:
 +        if listall:
 +            logger.info('Nothing seems to be installed.')
 +        else:
 +            logger.warning('No matching distribution found.')
 +            return 1
 +    else:
 +        logger.info('Found %d projects installed.', number)
 +
 +
 +@action_help("""\
 +Usage: pysetup search [project] [--simple [url]] [--xmlrpc [url] [--fieldname value ...] --operator or|and]
 +   or: pysetup search --help
 +
 +Search the indexes for the matching projects.
 +
 +positional arguments:
 +    project     the project pattern to search for
 +
 +optional arguments:
 +    --xmlrpc [url]      whether to use the xmlrpc index or not. If an url is
 +                        specified, it will be used rather than the default one.
 +
 +    --simple [url]      whether to use the simple index or not. If an url is
 +                        specified, it will be used rather than the default one.
 +
 +    --fieldname value   Make a search on this field. Can only be used if
 +                        --xmlrpc has been selected or is the default index.
 +
 +    --operator or|and   Defines what is the operator to use when doing xmlrpc
 +                        searchs with multiple fieldnames. Can only be used if
 +                        --xmlrpc has been selected or is the default index.
 +""")
 +def _search(dispatcher, args, **kw):
 +    """The search action.
 +
 +    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'])
 +    # 1. what kind of index is requested ? (xmlrpc / simple)
 +    logger.error('not implemented')
 +    return 1
 +
 +
 +actions = [
 +    ('run', 'Run one or several commands', _run),
 +    ('metadata', 'Display the metadata of a project', _metadata),
 +    ('install', 'Install a project', _install),
 +    ('remove', 'Remove a project', _remove),
 +    ('search', 'Search for a project in the indexes', _search),
 +    ('list', 'List installed projects', _list),
 +    ('graph', 'Display a graph', _graph),
 +    ('create', 'Create a project', _create),
 +    ('generate-setup', 'Generate a backward-comptatible setup.py', _generate),
 +]
 +
 +
 +class Dispatcher:
 +    """Reads the command-line options
 +    """
 +    def __init__(self, args=None):
 +        self.verbose = 1
 +        self.dry_run = False
 +        self.help = False
 +        self.cmdclass = {}
 +        self.commands = []
 +        self.command_options = {}
 +
 +        for attr in display_option_names:
 +            setattr(self, attr, False)
 +
 +        self.parser = FancyGetopt(global_options + display_options)
 +        self.parser.set_negative_aliases(negative_opt)
 +        # FIXME this parses everything, including command options (e.g. "run
 +        # build -i" errors with "option -i not recognized")
 +        args = self.parser.getopt(args=args, object=self)
 +
 +        # if first arg is "run", we have some commands
 +        if len(args) == 0:
 +            self.action = None
 +        else:
 +            self.action = args[0]
 +
 +        allowed = [action[0] for action in actions] + [None]
 +        if self.action not in allowed:
 +            msg = 'Unrecognized action "%s"' % self.action
 +            raise PackagingArgError(msg)
 +
 +        self._set_logger()
 +        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)
 +
 +    def _set_logger(self):
 +        # setting up the logging level from the command-line options
 +        # -q gets warning, error and critical
 +        if self.verbose == 0:
 +            level = logging.WARNING
 +        # default level or -v gets info too
 +        # XXX there's a bug somewhere: the help text says that -v is default
 +        # (and verbose is set to 1 above), but when the user explicitly gives
 +        # -v on the command line, self.verbose is incremented to 2!  Here we
 +        # compensate for that (I tested manually).  On a related note, I think
 +        # it's a good thing to use -q/nothing/-v/-vv on the command line
 +        # instead of logging constants; it will be easy to add support for
 +        # logging configuration in setup.cfg for advanced users. --merwok
 +        elif self.verbose in (1, 2):
 +            level = logging.INFO
 +        else:  # -vv and more for debug
 +            level = logging.DEBUG
 +
 +        # setting up the stream handler
 +        handler = logging.StreamHandler(sys.stderr)
 +        handler.setLevel(level)
 +        logger.addHandler(handler)
 +        logger.setLevel(level)
 +
 +    def _parse_command_opts(self, parser, args):
 +        # Pull the current command from the head of the command line
 +        command = args[0]
 +        if not command_re.match(command):
 +            raise SystemExit("invalid command name %r" % (command,))
 +        self.commands.append(command)
 +
 +        # Dig up the command class that implements this command, so we
 +        # 1) know that it's a valid command, and 2) know which options
 +        # it takes.
 +        try:
 +            cmd_class = get_command_class(command)
 +        except PackagingModuleError as msg:
 +            raise PackagingArgError(msg)
 +
 +        # XXX We want to push this in packaging.command
 +        #
 +        # Require that the command class be derived from Command -- want
 +        # to be sure that the basic "command" interface is implemented.
 +        for meth in ('initialize_options', 'finalize_options', 'run'):
 +            if hasattr(cmd_class, meth):
 +                continue
 +            raise PackagingClassError(
 +                'command %r must implement %r' % (cmd_class, meth))
 +
 +        # Also make sure that the command object provides a list of its
 +        # known options.
 +        if not (hasattr(cmd_class, 'user_options') and
 +                isinstance(cmd_class.user_options, list)):
 +            raise PackagingClassError(
 +                "command class %s must provide "
 +                "'user_options' attribute (a list of tuples)" % cmd_class)
 +
 +        # If the command class has a list of negative alias options,
 +        # merge it in with the global negative aliases.
 +        _negative_opt = negative_opt.copy()
 +
 +        if hasattr(cmd_class, 'negative_opt'):
 +            _negative_opt.update(cmd_class.negative_opt)
 +
 +        # Check for help_options in command class.  They have a different
 +        # format (tuple of four) so we need to preprocess them here.
 +        if (hasattr(cmd_class, 'help_options') and
 +            isinstance(cmd_class.help_options, list)):
 +            help_options = cmd_class.help_options[:]
 +        else:
 +            help_options = []
 +
 +        # All commands support the global options too, just by adding
 +        # in 'global_options'.
 +        parser.set_option_table(global_options +
 +                                cmd_class.user_options +
 +                                help_options)
 +        parser.set_negative_aliases(_negative_opt)
 +        args, opts = parser.getopt(args[1:])
 +
 +        if hasattr(opts, 'help') and opts.help:
 +            self._show_command_help(cmd_class)
 +            return
 +
 +        if (hasattr(cmd_class, 'help_options') and
 +            isinstance(cmd_class.help_options, list)):
 +            help_option_found = False
 +            for help_option, short, desc, func in cmd_class.help_options:
 +                if hasattr(opts, help_option.replace('-', '_')):
 +                    help_option_found = True
++                    if callable(func):
 +                        func()
 +                    else:
 +                        raise PackagingClassError(
 +                            "invalid help function %r for help option %r: "
 +                            "must be a callable object (function, etc.)"
 +                            % (func, help_option))
 +
 +            if help_option_found:
 +                return
 +
 +        # Put the options from the command line into their official
 +        # holding pen, the 'command_options' dictionary.
 +        opt_dict = self.get_option_dict(command)
 +        for name, value in vars(opts).items():
 +            opt_dict[name] = ("command line", value)
 +
 +        return args
 +
 +    def get_option_dict(self, command):
 +        """Get the option dictionary for a given command.  If that
 +        command's option dictionary hasn't been created yet, then create it
 +        and return the new dictionary; otherwise, return the existing
 +        option dictionary.
 +        """
 +        d = self.command_options.get(command)
 +        if d is None:
 +            d = self.command_options[command] = {}
 +        return d
 +
 +    def show_help(self):
 +        self._show_help(self.parser)
 +
 +    def print_usage(self, parser):
 +        parser.set_option_table(global_options)
 +
 +        actions_ = ['    %s: %s' % (name, desc) for name, desc, __ in actions]
 +        usage = common_usage % {'actions': '\n'.join(actions_)}
 +
 +        parser.print_help(usage + "\nGlobal options:")
 +
 +    def _show_help(self, parser, global_options_=True, display_options_=True,
 +                   commands=[]):
 +        # late import because of mutual dependence between these modules
 +        from packaging.command.cmd import Command
 +
 +        print('Usage: pysetup [options] action [action_options]')
 +        print()
 +        if global_options_:
 +            self.print_usage(self.parser)
 +            print()
 +
 +        if display_options_:
 +            parser.set_option_table(display_options)
 +            parser.print_help(
 +                "Information display options (just display " +
 +                "information, ignore any commands)")
 +            print()
 +
 +        for command in commands:
 +            if isinstance(command, type) and issubclass(command, Command):
 +                cls = command
 +            else:
 +                cls = get_command_class(command)
 +            if (hasattr(cls, 'help_options') and
 +                isinstance(cls.help_options, list)):
 +                parser.set_option_table(cls.user_options + cls.help_options)
 +            else:
 +                parser.set_option_table(cls.user_options)
 +
 +            parser.print_help("Options for %r command:" % cls.__name__)
 +            print()
 +
 +    def _show_command_help(self, command):
 +        if isinstance(command, str):
 +            command = get_command_class(command)
 +
 +        desc = getattr(command, 'description', '(no description available)')
 +        print('Description:', desc)
 +        print()
 +
 +        if (hasattr(command, 'help_options') and
 +            isinstance(command.help_options, list)):
 +            self.parser.set_option_table(command.user_options +
 +                                         command.help_options)
 +        else:
 +            self.parser.set_option_table(command.user_options)
 +
 +        self.parser.print_help("Options:")
 +        print()
 +
 +    def _get_command_groups(self):
 +        """Helper function to retrieve all the command class names divided
 +        into standard commands (listed in
 +        packaging.command.STANDARD_COMMANDS) and extra commands (given in
 +        self.cmdclass and not standard commands).
 +        """
 +        extra_commands = [cmd for cmd in self.cmdclass
 +                          if cmd not in STANDARD_COMMANDS]
 +        return STANDARD_COMMANDS, extra_commands
 +
 +    def print_commands(self):
 +        """Print out a help message listing all available commands with a
 +        description of each.  The list is divided into standard commands
 +        (listed in packaging.command.STANDARD_COMMANDS) and extra commands
 +        (given in self.cmdclass and not standard commands).  The
 +        descriptions come from the command class attribute
 +        'description'.
 +        """
 +        std_commands, extra_commands = self._get_command_groups()
 +        max_length = max(len(command)
 +                         for commands in (std_commands, extra_commands)
 +                         for command in commands)
 +
 +        self.print_command_list(std_commands, "Standard commands", max_length)
 +        if extra_commands:
 +            print()
 +            self.print_command_list(extra_commands, "Extra commands",
 +                                    max_length)
 +
 +    def print_command_list(self, commands, header, max_length):
 +        """Print a subset of the list of all commands -- used by
 +        'print_commands()'.
 +        """
 +        print(header + ":")
 +
 +        for cmd in commands:
 +            cls = self.cmdclass.get(cmd) or get_command_class(cmd)
 +            description = getattr(cls, 'description',
 +                                  '(no description available)')
 +
 +            print("  %-*s  %s" % (max_length, cmd, description))
 +
 +    def __call__(self):
 +        if self.action is None:
 +            return
 +
 +        for action, desc, func in actions:
 +            if action == self.action:
 +                return func(self, self.args)
 +        return -1
 +
 +
 +def main(args=None):
 +    old_level = logger.level
 +    old_handlers = list(logger.handlers)
 +    try:
 +        dispatcher = Dispatcher(args)
 +        if dispatcher.action is None:
 +            return
 +        return dispatcher()
 +    except KeyboardInterrupt:
 +        logger.info('interrupted')
 +        return 1
 +    except (IOError, os.error, PackagingError, CCompilerError) as exc:
 +        logger.exception(exc)
 +        return 1
 +    finally:
 +        logger.setLevel(old_level)
 +        logger.handlers[:] = old_handlers
 +
 +
 +if __name__ == '__main__':
 +    sys.exit(main())
diff --cc Lib/pickle.py
Simple merge
diff --cc Lib/pydoc.py
Simple merge
diff --cc Lib/re.py
Simple merge
diff --cc Lib/shutil.py
Simple merge
Simple merge
diff --cc Lib/timeit.py
index f45168b4452ef7a6be87adf1847dd6746cf1bb6f,1ae59e0cccdb1ee4b78d52653d840e131b40645a..fdc0bbb5b4725d3da60ff31b68f62e7e444ad13a
@@@ -126,9 -126,9 +126,9 @@@ class Timer
              stmt = reindent(stmt, 8)
              if isinstance(setup, str):
                  setup = reindent(setup, 4)
 -                src = template % {'stmt': stmt, 'setup': setup}
 +                src = template.format(stmt=stmt, setup=setup)
-             elif hasattr(setup, '__call__'):
+             elif callable(setup):
 -                src = template % {'stmt': stmt, 'setup': '_setup()'}
 +                src = template.format(stmt=stmt, setup='_setup()')
                  ns['_setup'] = setup
              else:
                  raise ValueError("setup is neither a string nor callable")
Simple merge
diff --cc Misc/NEWS
Simple merge