~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    version_string = '%d.%d.%d%s%d' % version_info
47
47
__version__ = version_string
48
48
 
49
 
from bzrlib.symbol_versioning import (deprecated_function,
50
 
                                      zero_seven,
51
 
                                      zero_nine,
52
 
                                      deprecated_list,
53
 
                                     )
54
 
 
55
 
# Kept for compatibility with 0.8, it is considered deprecated to modify it
56
 
DEFAULT_IGNORE = deprecated_list(zero_nine, 'DEFAULT_IGNORE', [],
57
 
                    'Consider using bzrlib.ignores.add_unique_user_ignores'
58
 
                    ' or bzrlib.ignores.add_runtime_ignores')
59
 
 
60
49
# allow bzrlib plugins to be imported.
61
50
import bzrlib.plugin
62
51
bzrlib.plugin.set_plugins_path()