/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzr

  • Committer: John Arbash Meinel
  • Date: 2009-06-17 19:10:35 UTC
  • mfrom: (4454 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4461.
  • Revision ID: john@arbash-meinel.com-20090617191035-0vztgazsdwa3mwg4
Merge bzr.dev 4454 in prep for NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
import os
22
22
import sys
 
23
import warnings
23
24
 
24
25
# update this on each release
25
 
_script_version = (1, 16, 0)
 
26
_script_version = (1, 17, 0)
26
27
 
27
28
if __doc__ is None:
28
29
    print "bzr does not support python -OO."
78
79
else:
79
80
    import locale
80
81
 
 
82
 
 
83
# The python2.6 release includes some libraries that have deprecation warnings
 
84
# against the interpreter - see https://bugs.launchpad.net/bzr/+bug/387139
 
85
warnings.filterwarnings('ignore',
 
86
    r"(struct integer overflow masking is deprecated|"
 
87
    r"'L' format requires 0 <= number <= 4294967295)",
 
88
    DeprecationWarning,
 
89
    'gzip',
 
90
    )
 
91
 
 
92
 
81
93
try:
82
94
    locale.setlocale(locale.LC_ALL, '')
83
95
except locale.Error, e: