~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • 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
1
#! /usr/bin/env python
2
2
 
3
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
 
3
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Canonical Ltd
4
4
#
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
20
20
 
21
21
import os
22
22
import sys
 
23
import warnings
23
24
 
24
25
# update this on each release
25
 
_script_version = (1, 14, 0)
 
26
_script_version = (2, 3, 0)
26
27
 
27
 
if __doc__ is None:
28
 
    print "bzr does not support python -OO."
29
 
    sys.exit(2)
30
28
try:
31
29
    version_info = sys.version_info
32
30
except AttributeError:
34
32
 
35
33
REINVOKE = "__BZR_REINVOKE"
36
34
NEED_VERS = (2, 4)
37
 
KNOWN_PYTHONS = ('python2.4', 'python2.5')
 
35
KNOWN_PYTHONS = ('python2.4', 'python2.5', 'python2.6')
38
36
 
39
37
if version_info < NEED_VERS:
40
38
    if not os.environ.has_key(REINVOKE):
54
52
 
55
53
profiling = False
56
54
if '--profile-imports' in sys.argv:
57
 
    sys.argv.remove('--profile-imports')
58
55
    import profile_imports
59
56
    profile_imports.install()
60
57
    profiling = True
78
75
else:
79
76
    import locale
80
77
 
 
78
 
 
79
# The python2.6 release includes some libraries that have deprecation warnings
 
80
# against the interpreter - see https://bugs.launchpad.net/bzr/+bug/387139
 
81
warnings.filterwarnings('ignore',
 
82
    r"(struct integer overflow masking is deprecated|"
 
83
    r"'L' format requires 0 <= number <= 4294967295)",
 
84
    DeprecationWarning,
 
85
    'gzip',
 
86
    )
 
87
 
 
88
 
81
89
try:
82
90
    locale.setlocale(locale.LC_ALL, '')
83
91
except locale.Error, e:
110
118
bzrlib.inspect_for_copy.import_copy_with_hacked_inspect()
111
119
 
112
120
import bzrlib.breakin
113
 
bzrlib.breakin.hook_sigquit()
 
121
bzrlib.breakin.hook_debugger_to_signal()
114
122
 
115
123
import bzrlib.decorators
116
124
if ('--lsprof' in sys.argv
126
134
 
127
135
 
128
136
if __name__ == '__main__':
129
 
    bzrlib.trace.enable_default_logging()
130
 
    exit_val = bzrlib.commands.main(sys.argv)
131
 
 
132
 
    if profiling:
133
 
        profile_imports.log_stack_info(sys.stderr)
134
 
 
135
 
    # run anything registered by atexit, because it won't be run in the normal
136
 
    # way
137
 
    sys.exitfunc()
 
137
    library_state = bzrlib.initialize()
 
138
    library_state.__enter__()
 
139
    try:
 
140
        exit_val = bzrlib.commands.main()
 
141
        if profiling:
 
142
            profile_imports.log_stack_info(sys.stderr)
 
143
    finally:
 
144
        library_state.__exit__(None, None, None)
138
145
 
139
146
    # By this point we really have completed everything we want to do, and
140
147
    # there's no point doing any additional cleanup.  Abruptly exiting here
143
150
    # are just about to be discarded anyhow.  This does mean that atexit hooks
144
151
    # won't run but we don't use them.  Also file buffers won't be flushed,
145
152
    # but our policy is to always close files from a finally block. -- mbp 20070215
146
 
    try:
147
 
        sys.stdout.flush()
148
 
        sys.stderr.flush()
149
 
    except IOError, e:
150
 
        import errno
151
 
        if e.errno in [errno.EINVAL, errno.EPIPE]:
152
 
            pass
153
 
        else:
154
 
            raise
155
 
    if bzrlib.trace._trace_file:
156
 
        # this is also _bzr_log
157
 
        bzrlib.trace._trace_file.flush()
 
153
    sys.exitfunc()
158
154
    os._exit(exit_val)
159
155
else:
160
156
    raise ImportError("The bzr script cannot be imported.")