~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-09 04:46:15 UTC
  • Revision ID: mbp@sourcefrog.net-20050309044615-c24a3250be83220a
.bzrignore support
- new WorkingTree.get_file_byname() to read .bzrignore
- split out WorkingTree.get_ignore_list

Show diffs side-by-side

added added

removed removed

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