~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/workingtree_implementations/test_commit.py

  • Committer: Martin Pool
  • Date: 2006-06-20 03:57:11 UTC
  • mto: This revision was merged to the branch mainline in revision 1798.
  • Revision ID: mbp@sourcefrog.net-20060620035711-400bb6b6bc6ff95b
Add pyflakes makefile target; fix many warnings

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
# Authors:  Robert Collins <robert.collins@canonical.com>
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
18
18
from cStringIO import StringIO
19
19
import os
20
20
 
21
 
import bzrlib
22
 
import bzrlib.branch
23
 
from bzrlib.branch import Branch
24
 
import bzrlib.bzrdir as bzrdir
25
 
from bzrlib.bzrdir import BzrDir
26
 
import bzrlib.errors as errors
 
21
from bzrlib import branch, bzrdir, errors, ui, workingtree
27
22
from bzrlib.errors import (NotBranchError, NotVersionedError, 
28
23
                           UnsupportedOperation)
29
24
from bzrlib.osutils import pathjoin, getcwd, has_symlinks
30
25
from bzrlib.tests import TestSkipped, TestCase
31
26
from bzrlib.tests.workingtree_implementations import TestCaseWithWorkingTree
32
27
from bzrlib.trace import mutter
33
 
import bzrlib.ui as ui
34
 
import bzrlib.workingtree as workingtree
35
28
from bzrlib.workingtree import (TreeEntry, TreeDirectory, TreeFile, TreeLink,
36
29
                                WorkingTree)
37
30