~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-05-11 11:47:36 UTC
  • mfrom: (5200.3.8 lock_return)
  • Revision ID: pqm@pqm.ubuntu.com-20100511114736-mc1sq9zyo3vufec7
(lifeless) Provide a consistent interface to Tree, Branch,
 Repository where lock methods return an object with an unlock method to
 unlock the lock. This breaks the API for Branch,
 Repository on their lock_write methods. (Robert Collins)

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
44
41
    '*~',
45
42
    '.#*',
46
43
    '[#]*#',
47
 
    '__pycache__',
48
 
    'bzr-orphans',
49
44
]
50
45
 
51
46