~ubuntu-branches/ubuntu/lucid/bzr/lucid-proposed

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jeff Bailey
  • Date: 2006-03-20 08:31:00 UTC
  • mfrom: (1.1.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060320083100-ovdi2ssuw0epcx8s
Tags: 0.8~200603200831-0ubuntu1
* Snapshot uploaded to Dapper at Martin Pool's request.

* Disable testsuite for upload.  Fakeroot and the testsuite don't
  play along.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""bzr library"""
18
18
 
19
 
BZRDIR = ".bzr"
20
19
 
21
20
# please keep these sorted (in C locale order) to aid merging
22
21
DEFAULT_IGNORE = [
89
88
del locale
90
89
 
91
90
__copyright__ = "Copyright 2005,06 Canonical Development Ltd."
92
 
__version__ = version_string = '0.7'
 
91
__version__ = version_string = '0.8pre'
93
92
# same format as sys.version_info
94
 
version_info = (0, 7, 0, 'final', 0)
 
93
version_info = (0, 8, 0, 'pre', 0)
95
94
 
96
95
 
97
96
from bzrlib.symbol_versioning import deprecated_function, zero_seven