~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.py

Move doctest import to increase speed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 by Canonical Ltd
 
1
# Copyright (C) 2005 by Canonical Ltd
2
2
#
3
3
# Authors:
4
4
#   Johan Rydberg <jrydberg@gnu.org>
26
26
 
27
27
import bzrlib.errors as errors
28
28
from bzrlib.inter import InterObject
 
29
from bzrlib.symbol_versioning import *
29
30
from bzrlib.textmerge import TextMerge
30
31
from bzrlib.transport.memory import MemoryTransport
31
32
from bzrlib.tsort import topo_sort
32
33
from bzrlib import ui
33
 
from bzrlib.symbol_versioning import (deprecated_function,
34
 
        deprecated_method,
35
 
        zero_eight,
36
 
        )
37
34
 
38
35
 
39
36
class VersionedFile(object):