21
DEFAULT_IGNORE = ['.bzr.log',
22
'*~', '#*#', '*$', '.#*',
23
'.*.sw[nop]', '.*.tmp',
24
'*.tmp', '*.bak', '*.BAK', '*.orig',
25
'*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.o', '*.lo', '*.la', '*.exe',
27
'{arch}', '.arch-ids', '.arch-inventory', 'CVS', 'CVS.adm', '.svn', '_darcs',
21
# please keep these sorted (in C locale order) to aid merging
32
'TAGS', '.make.state', '.sconsign', '.tmp*',
33
'autom4te*', 'config.guess', 'config.h.in', 'config.status',
34
'config.h', 'config.log', 'config.sub', 'configure.in',
35
'aclocal.m4', 'stamp-h.in', 'Makefile.in', '.libs',
36
'stamp-h1', 'stamp-h',
41
79
IGNORE_FILENAME = ".bzrignore"
48
86
__copyright__ = "Copyright 2005 Canonical Development Ltd."
49
__version__ = '0.6pre'
87
__version__ = version_string = '0.6pre'
88
# same format as sys.version_info
89
version_info = (0, 6, 0, 'rc', 1)
52
92
def get_bzr_revision():