~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-17 08:59:19 UTC
  • mfrom: (5037.2.1 doc)
  • Revision ID: pqm@pqm.ubuntu.com-20100217085919-23vc62bvq8848q65
(mbp) rest markup fixes

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
138
138
 
139
139
 
140
140
if __name__ == '__main__':
141
 
    bzrlib.trace.enable_default_logging()
 
141
    bzrlib.initialize()
142
142
    exit_val = bzrlib.commands.main()
143
143
 
144
144
    if profiling:
145
145
        profile_imports.log_stack_info(sys.stderr)
146
146
 
147
 
    # run anything registered by atexit, because it won't be run in the normal
148
 
    # way
149
 
    sys.exitfunc()
150
 
 
151
147
    # By this point we really have completed everything we want to do, and
152
148
    # there's no point doing any additional cleanup.  Abruptly exiting here
153
149
    # stops any background threads getting into trouble as code is unloaded,
155
151
    # are just about to be discarded anyhow.  This does mean that atexit hooks
156
152
    # won't run but we don't use them.  Also file buffers won't be flushed,
157
153
    # but our policy is to always close files from a finally block. -- mbp 20070215
158
 
    try:
159
 
        sys.stdout.flush()
160
 
        sys.stderr.flush()
161
 
    except IOError, e:
162
 
        import errno
163
 
        if e.errno in [errno.EINVAL, errno.EPIPE]:
164
 
            pass
165
 
        else:
166
 
            raise
167
 
    if bzrlib.trace._trace_file:
168
 
        # this is also _bzr_log
169
 
        bzrlib.trace._trace_file.flush()
 
154
    sys.exitfunc()
170
155
    os._exit(exit_val)
171
156
else:
172
157
    raise ImportError("The bzr script cannot be imported.")