~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-03-14 07:40:45 UTC
  • Revision ID: mbp@sourcefrog.net-20050314074045-37aa087acfe6b97b
todo

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
BZRDIR = ".bzr"
27
27
 
28
 
DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a']
 
28
DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a', '*.py[oc]',
 
29
                  '{arch}']
 
30
 
 
31
IGNORE_FILENAME = ".bzrignore"
 
32
 
29
33