/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: v.ladeuil+lp at free
  • Date: 2006-10-12 07:33:29 UTC
  • mfrom: (2073 +trunk)
  • mto: (2145.1.1 keepalive)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: v.ladeuil+lp@free.fr-20061012073329-854608f3287dcdd1
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