~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ignores.py

  • Committer: Karl Bielefeldt
  • Date: 2010-09-29 19:57:28 UTC
  • mto: (5483.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5484.
  • Revision ID: 7mq3cbbd9q@snkmail.com-20100929195728-nvuqlepsrwcxbziw
Use meliae to dump memory to a file upon MemoryError.

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