~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Robert Collins
  • Date: 2006-01-05 22:30:59 UTC
  • mto: (1534.1.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1536.
  • Revision ID: robertc@robertcollins.net-20060105223059-a8b64f7b47cf12fb
 * bzrlib.osutils.safe_unicode now exists to provide parameter coercion
   for functions that need unicode strings. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
                  '*.py[oc]',
38
38
                  '*.so',
39
39
                  '*.tmp',
40
 
                  '.*.tmp',
41
40
                  '*~',
42
41
                  '.#*',
43
42
                  '.*.sw[nop]',
44
 
                  '.sw[nop]',    # vim editing nameless file
 
43
                  '.*.tmp',
45
44
                  '.DS_Store',
46
45
                  '.arch-ids',
47
46
                  '.arch-inventory',
57
56
                  'BitKeeper',
58
57
                  'CVS',
59
58
                  'CVS.adm',
 
59
                  'Makefile.in',
60
60
                  'RCS',
61
61
                  'SCCS',
62
62
                  'TAGS',
88
88
user_encoding = locale.getpreferredencoding() or 'ascii'
89
89
del locale
90
90
 
91
 
__copyright__ = "Copyright 2005,06 Canonical Development Ltd."
92
 
__version__ = version_string = '0.8pre'
 
91
__copyright__ = "Copyright 2005 Canonical Development Ltd."
 
92
__version__ = version_string = '0.7pre'
93
93
# same format as sys.version_info
94
 
version_info = (0, 8, 0, 'pre', 0)
 
94
version_info = (0, 7, 0, 'pre', 0)
95
95
 
96
96
 
97
97
from bzrlib.symbol_versioning import deprecated_function, zero_seven