~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-05-05 06:38:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050505063818-3eb3260343878325
- do upload CHANGELOG to web server, even though it's autogenerated

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                  '.*.swp', '.*.tmp',
32
32
                  '*.tmp', '*.bak', '*.BAK', '*.orig',
33
33
                  '*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc', 
34
 
                  '{arch}', 'CVS', '.svn', '_darcs', 'SCCS', 'RCS',
 
34
                  '{arch}', 'CVS', 'CVS.adm', '.svn', '_darcs', 'SCCS', 'RCS',
35
35
                  '*,v',
36
36
                  'BitKeeper',
37
 
                  'TAGS', '.make.state', '.sconsign', '.tmp*']
 
37
                  'TAGS', '.make.state', '.sconsign', '.tmp*',
 
38
                  '.del-*']
38
39
 
39
40
IGNORE_FILENAME = ".bzrignore"
40
41