~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/bzrdir_implementations/test_bzrdir.py

  • Committer: Martin Pool
  • Date: 2006-06-20 07:55:43 UTC
  • mfrom: (1798 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1799.
  • Revision ID: mbp@sourcefrog.net-20060620075543-b10f6575d4a4fa32
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 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
18
18
 
19
19
from cStringIO import StringIO
20
20
import os
21
 
from stat import *
 
21
from stat import S_ISDIR
22
22
import sys
23
23
 
24
24
import bzrlib.branch
25
25
import bzrlib.bzrdir as bzrdir
26
26
from bzrlib.branch import Branch, needs_read_lock, needs_write_lock
27
27
from bzrlib.check import check
28
 
from bzrlib.commit import commit
29
28
import bzrlib.errors as errors
30
29
from bzrlib.errors import (FileExists,
31
30
                           NoSuchRevision,