~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-09 14:43:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: john@arbash-meinel.com-20060809144327-d604af2edf646794
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""bzr library"""
18
18
 
19
19
 
20
 
# please keep these sorted (in C locale order) to aid merging
21
 
DEFAULT_IGNORE = [
22
 
                  '#*#',
23
 
                  '*$',
24
 
                  '*,v',
25
 
                  '*.BAK',
26
 
                  '*.a',
27
 
                  '*.bak',
28
 
                  '*.elc',
29
 
                  '*.exe',
30
 
                  '*.la',
31
 
                  '*.lo',
32
 
                  '*.o',
33
 
                  '*.o',
34
 
                  '*.obj',
35
 
                  '*.orig',
36
 
                  '*.py[oc]',
37
 
                  '*.so',
38
 
                  '*.tmp',
39
 
                  '.*.tmp',
40
 
                  '*~',
41
 
                  '.#*',
42
 
                  '.*.sw[nop]',
43
 
                  '.sw[nop]',    # vim editing nameless file
44
 
                  '.DS_Store',
45
 
                  '.arch-ids',
46
 
                  '.arch-inventory',
47
 
                  '.bzr.log',
48
 
                  '.del-*',
49
 
                  '.hg',
50
 
                  '.git',
51
 
                  '.jamdeps'
52
 
                  '.libs',
53
 
                  '.make.state',
54
 
                  '.sconsign*',
55
 
                  '.svn',
56
 
                  '.tmp*',
57
 
                  'BitKeeper',
58
 
                  'CVS',
59
 
                  'CVS.adm',
60
 
                  'RCS',
61
 
                  'SCCS',
62
 
                  'TAGS',
63
 
                  '_darcs',
64
 
                  'aclocal.m4',
65
 
                  'autom4te*',
66
 
                  'config.h',
67
 
                  'config.h.in',
68
 
                  'config.log',
69
 
                  'config.status',
70
 
                  'config.sub',
71
 
                  'stamp-h',
72
 
                  'stamp-h.in',
73
 
                  'stamp-h1',
74
 
                  '{arch}',
75
 
                  # Our setup tests dump .python-eggs in the bzr source tree
76
 
                  # root
77
 
                  './.python-eggs',
78
 
                  ]
79
 
 
80
20
IGNORE_FILENAME = ".bzrignore"
81
21
 
82
22
import os
88
28
    sys.platform = 'darwin'
89
29
else:
90
30
    import locale
 
31
# XXX: This probably belongs in osutils instead
91
32
user_encoding = locale.getpreferredencoding() or 'ascii'
92
33
del locale
93
34
 
107
48
    version_string = '%d.%d.%d' % version_info[:3]
108
49
else:
109
50
    version_string = '%d.%d.%d%s%d' % version_info
110
 
__version__ = version_string 
111
 
 
112
 
from bzrlib.symbol_versioning import deprecated_function, zero_seven
 
51
__version__ = version_string
 
52
 
 
53
from bzrlib.symbol_versioning import (deprecated_function,
 
54
                                      zero_seven,
 
55
                                      zero_nine,
 
56
                                      deprecated_list,
 
57
                                     )
 
58
 
 
59
# Kept for compatibility with 0.8, it is considered deprecated to modify it
 
60
DEFAULT_IGNORE = deprecated_list(zero_nine, 'DEFAULT_IGNORE', [],
 
61
                    'Consider using bzrlib.ignores.add_unique_user_ignores'
 
62
                    ' or bzrlib.ignores.add_runtime_ignores')
 
63
 
113
64
 
114
65
@deprecated_function(zero_seven)
115
66
def get_bzr_revision():