~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/version.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) 2004, 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2006-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
27
27
    osutils,
28
28
    trace,
29
29
    )
30
 
from bzrlib.branch import Branch
31
30
 
32
31
 
33
32
def show_version(show_config=True, show_copyright=True, to_file=None):
 
33
    import platform
 
34
 
34
35
    if to_file is None:
35
36
        to_file = sys.stdout
36
37
    to_file.write("Bazaar (bzr) %s\n" % bzrlib.__version__)
48
49
    # show path to python interpreter
49
50
    # (bzr.exe use python interpreter from pythonXY.dll
50
51
    # but sys.executable point to bzr.exe itself)
51
 
    if not hasattr(sys, 'frozen'):  # check for bzr.exe
52
 
        # python executable
 
52
    # however, sys.frozen exists if running from bzr.exe
 
53
    # see http://www.py2exe.org/index.cgi/Py2exeEnvironment
 
54
    if getattr(sys, 'frozen', None) is None: # if not bzr.exe
53
55
        to_file.write(sys.executable + ' ')
54
56
    else:
55
57
        # pythonXY.dll
62
64
 
63
65
    to_file.write("  Python standard library:" + ' ')
64
66
    to_file.write(os.path.dirname(os.__file__) + '\n')
 
67
    to_file.write("  Platform: %s\n" % platform.platform(aliased=1))
65
68
    to_file.write("  bzrlib: ")
66
69
    if len(bzrlib.__path__) > 1:
67
70
        # print repr, which is a good enough way of making it clear it's
79
82
    if show_copyright:
80
83
        to_file.write('\n')
81
84
        to_file.write(bzrlib.__copyright__ + '\n')
82
 
        to_file.write("http://bazaar-vcs.org/\n")
 
85
        to_file.write("http://bazaar.canonical.com/\n")
83
86
        to_file.write('\n')
84
87
        to_file.write("bzr comes with ABSOLUTELY NO WARRANTY.  bzr is free software, and\n")
85
88
        to_file.write("you may use, modify and redistribute it under the terms of the GNU\n")
86
89
        to_file.write("General Public License version 2 or later.\n")
 
90
        to_file.write("\nBazaar is part of the GNU Project to produce a free operating "
 
91
                "system.\n")
87
92
    to_file.write('\n')
88
93
 
89
94