~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_ignore.py

  • Committer: John Arbash Meinel
  • Date: 2006-10-16 01:25:46 UTC
  • mfrom: (2071 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: john@arbash-meinel.com-20061016012546-d01a0740671b4d73
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import re
23
23
import sys
24
24
 
25
 
from bzrlib import ignores
 
25
from bzrlib import (
 
26
    ignores,
 
27
    osutils,
 
28
    )
26
29
import bzrlib
27
30
from bzrlib.branch import Branch
28
31
import bzrlib.bzrdir as bzrdir
30
33
from bzrlib.osutils import (
31
34
    has_symlinks,
32
35
    pathjoin,
33
 
    rmtree,
34
36
    terminal_width,
35
37
    )
36
38
from bzrlib.tests.HTTPTestUtil import TestCaseWithWebserver