~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-12 16:20:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1871.
  • Revision ID: john@arbash-meinel.com-20060712162000-c8cfe629b012e0bb
Move ignores into a file of their own, make DEFAULT_IGNORE a deprecated list. Create deprecated_list in symbol versioning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
import bzrlib
27
27
from bzrlib.branch import Branch, BranchReferenceFormat
28
 
from bzrlib import (bundle, branch, bzrdir, errors, osutils, ui, config,
29
 
    repository, log)
 
28
from bzrlib import (bundle, branch, bzrdir, errors, ignores,
 
29
                    osutils, ui, config, repository, log)
30
30
from bzrlib.bundle import read_bundle_from_url
31
31
from bzrlib.bundle.apply_bundle import install_bundle, merge_bundle
32
32
from bzrlib.conflicts import ConflictList
1467
1467
        from bzrlib.atomicfile import AtomicFile
1468
1468
        if old_default_rules is not None:
1469
1469
            # dump the rules and exit
1470
 
            for pattern in bzrlib.DEFAULT_IGNORE:
 
1470
            for pattern in ignores.OLD_DEFAULTS:
1471
1471
                print pattern
1472
1472
            return
1473
1473
        if name_pattern is None: