~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_server.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-02-11 17:12:35 UTC
  • mfrom: (5652.1.7 thread-with-exception)
  • Revision ID: pqm@pqm.ubuntu.com-20110211171235-ky1uu0l0gz6501g7
(vila) Use cethread to avoid ambiguity with python module. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
 
24
24
from bzrlib import (
 
25
    cethread,
25
26
    osutils,
26
 
    thread,
27
27
    transport,
28
28
    urlutils,
29
29
    )
243
243
        raise NotImplementedError
244
244
 
245
245
 
246
 
class TestThread(thread.CatchingExceptionThread):
 
246
class TestThread(cethread.CatchingExceptionThread):
247
247
 
248
248
    def join(self, timeout=5):
249
249
        """Overrides to use a default timeout.