~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-10 03:29:51 UTC
  • mfrom: (2690.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070810032951-lfyztl72xe81b2uo
(Ian Clatworthy) Registration survey added to README

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
36
36
# releaselevel of 'dev' for unreleased under-development code.
37
37
 
38
 
version_info = (0, 91, 0, 'dev', 0)
 
38
version_info = (0, 19, 0, 'dev', 0)
39
39
 
40
40
# API compatibility version: bzrlib is currently API compatible with 0.18.
41
41
api_minimum_version = (0, 18, 0)
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
 
49
60
# allow bzrlib plugins to be imported.
50
61
import bzrlib.plugin
51
62
bzrlib.plugin.set_plugins_path()