~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ignores.py

  • Committer: Andrew Bennetts
  • Date: 2010-10-13 00:26:41 UTC
  • mto: This revision was merged to the branch mainline in revision 5498.
  • Revision ID: andrew.bennetts@canonical.com-20101013002641-9tlh9k89mlj1666m
Keep docs-plain working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
 
1
# Copyright (C) 2006-2010 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(), """
26
24
from bzrlib import (
27
25
    atomicfile,
28
26
    config,
30
28
    )
31
29
 
32
30
from trace import warning
33
 
""")
34
31
 
35
32
# ~/.bazaar/ignore will be filled out using
36
33
# this ignore list, if it does not exist
45
42
    '.#*',
46
43
    '[#]*#',
47
44
    '__pycache__',
48
 
    'bzr-orphans',
49
45
]
50
46
 
51
47