~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Aaron Bentley
  • Date: 2007-08-20 13:07:12 UTC
  • mfrom: (2732 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2733.
  • Revision ID: abentley@panoramicfeedback.com-20070820130712-buopmg528zcgwyxc
Merge bzr.dev

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()