~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-01-12 00:43:17 UTC
  • mfrom: (5582.4.3 presplitoutbzrbranch)
  • Revision ID: pqm@pqm.ubuntu.com-20110112004317-81kxafod33p5lqal
(jelmer) Remove some hardcoded dependencies on weave-era formats in bzrlib
 and clean up more imports. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for display of exceptions."""
18
18
 
19
 
from cStringIO import StringIO
20
 
import os
21
19
import sys
22
20
 
23
21
from bzrlib import (
27
25
    osutils,
28
26
    repository,
29
27
    tests,
30
 
    trace,
31
28
    )
32
29
 
33
 
from bzrlib.tests import TestCaseInTempDir, TestCase
34
 
from bzrlib.errors import NotBranchError
 
30
from bzrlib.tests import TestCase
35
31
 
36
32
 
37
33
class TestExceptionReporting(TestCase):