~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ignores.py

  • Committer: Patch Queue Manager
  • Date: 2011-10-14 16:54:26 UTC
  • mfrom: (6216.1.1 remove-this-file)
  • Revision ID: pqm@pqm.ubuntu.com-20111014165426-tjix4e6idryf1r2z
(jelmer) Remove an accidentally committed .THIS file. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2006-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
21
21
from cStringIO import StringIO
22
22
 
23
23
import bzrlib
 
24
from bzrlib.lazy_import import lazy_import
 
25
lazy_import(globals(), """
24
26
from bzrlib import (
25
27
    atomicfile,
26
28
    config,
28
30
    )
29
31
 
30
32
from trace import warning
 
33
""")
31
34
 
32
35
# ~/.bazaar/ignore will be filled out using
33
36
# this ignore list, if it does not exist
41
44
    '*~',
42
45
    '.#*',
43
46
    '[#]*#',
 
47
    '__pycache__',
 
48
    'bzr-orphans',
44
49
]
45
50
 
46
51