~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ignores.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

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
16
16
 
17
17
"""Lists of ignore files, etc."""
18
18
 
19
 
from __future__ import absolute_import
20
 
 
21
19
import errno
22
20
import os
23
21
from cStringIO import StringIO
24
22
 
25
23
import bzrlib
26
 
from bzrlib.lazy_import import lazy_import
27
 
lazy_import(globals(), """
28
24
from bzrlib import (
29
25
    atomicfile,
30
26
    config,
31
27
    globbing,
32
 
    trace,
33
28
    )
34
 
""")
 
29
 
 
30
from trace import warning
35
31
 
36
32
# ~/.bazaar/ignore will be filled out using
37
33
# this ignore list, if it does not exist
45
41
    '*~',
46
42
    '.#*',
47
43
    '[#]*#',
48
 
    '__pycache__',
49
 
    'bzr-orphans',
50
44
]
51
45
 
52
46
 
73
67
                unicode_lines.append(line.decode('utf-8'))
74
68
            except UnicodeDecodeError:
75
69
                # report error about line (idx+1)
76
 
                trace.warning(
77
 
                        '.bzrignore: On Line #%d, malformed utf8 character. '
 
70
                warning('.bzrignore: On Line #%d, malformed utf8 character. '
78
71
                        'Ignoring line.' % (line_number+1))
79
72
 
80
73
    # Append each line to ignore list if it's not a comment line