~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
687
687
 
688
688
        self._setup_outf()
689
689
 
690
 
        try:
691
 
            return self.run(**all_cmd_args)
692
 
        finally:
693
 
            # reset it, so that other commands run in the same process won't
694
 
            # inherit state. Before we reset it, log any activity, so that it
695
 
            # gets properly tracked.
696
 
            ui.ui_factory.log_transport_activity(
697
 
                display=('bytes' in debug.debug_flags))
698
 
            trace.set_verbosity_level(0)
 
690
        return self.run(**all_cmd_args)
699
691
 
700
692
    def _setup_run(self):
701
693
        """Wrap the defined run method on self with a cleanup.
818
810
    else:
819
811
        args = argv
820
812
 
821
 
    # for python 2.5 and later, optparse raises this exception if a non-ascii
822
 
    # option name is given.  See http://bugs.python.org/issue2931
823
 
    try:
824
 
        options, args = parser.parse_args(args)
825
 
    except UnicodeEncodeError,e:
826
 
        raise errors.BzrCommandError('Only ASCII permitted in option names')
827
 
 
 
813
    options, args = parser.parse_args(args)
828
814
    opts = dict([(k, v) for k, v in options.__dict__.iteritems() if
829
815
                 v is not option.OptionParser.DEFAULT_VALUE])
830
816
    return args, opts
1205
1191
    argv = _specified_or_unicode_argv(argv)
1206
1192
    _register_builtin_commands()
1207
1193
    ret = run_bzr_catch_errors(argv)
 
1194
    bzrlib.ui.ui_factory.log_transport_activity(
 
1195
        display=('bytes' in debug.debug_flags))
1208
1196
    trace.mutter("return code %d", ret)
1209
1197
    return ret
1210
1198