~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Aaron Bentley
  • Date: 2006-02-22 14:39:42 UTC
  • mto: (2027.1.2 revert-subpath-56549)
  • mto: This revision was merged to the branch mainline in revision 1570.
  • Revision ID: abentley@panoramicfeedback.com-20060222143942-ae72299f2de66767
Fixed build_tree with symlinks

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""bzr library"""
18
18
 
19
 
BZRDIR = ".bzr"
20
19
 
21
20
# please keep these sorted (in C locale order) to aid merging
22
21
DEFAULT_IGNORE = [
37
36
                  '*.py[oc]',
38
37
                  '*.so',
39
38
                  '*.tmp',
 
39
                  '.*.tmp',
40
40
                  '*~',
41
41
                  '.#*',
42
42
                  '.*.sw[nop]',
43
 
                  '.*.tmp',
 
43
                  '.sw[nop]',    # vim editing nameless file
44
44
                  '.DS_Store',
45
45
                  '.arch-ids',
46
46
                  '.arch-inventory',
56
56
                  'BitKeeper',
57
57
                  'CVS',
58
58
                  'CVS.adm',
59
 
                  'Makefile.in',
60
59
                  'RCS',
61
60
                  'SCCS',
62
61
                  'TAGS',
88
87
user_encoding = locale.getpreferredencoding() or 'ascii'
89
88
del locale
90
89
 
91
 
__copyright__ = "Copyright 2005 Canonical Development Ltd."
92
 
__version__ = version_string = '0.7pre'
 
90
__copyright__ = "Copyright 2005,06 Canonical Development Ltd."
 
91
__version__ = version_string = '0.8pre'
93
92
# same format as sys.version_info
94
 
version_info = (0, 7, 0, 'pre', 0)
 
93
version_info = (0, 8, 0, 'pre', 0)
95
94
 
96
95
 
97
96
from bzrlib.symbol_versioning import deprecated_function, zero_seven