/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
6621.10.1 by Martin
Add bzrlib.sixish module to help porting process
1
# Copyright (C) 2017 Bazaar hackers
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
17
"""
18
Module to aid writing a Python dialect compatible with 2.7 and 3.4+.
19
20
Initially pretty much just a subset of six while things get worked out.
21
"""
22
23
from __future__ import absolute_import
24
25
from six import (
26
    binary_type,
27
    PY3,
28
    reraise,
29
    string_types,
30
    text_type,
31
    viewitems,
6651.4.1 by Martin
Rewrite of the plugin module for Python 3 compat and general sanity
32
    viewkeys,
6621.10.1 by Martin
Add bzrlib.sixish module to help porting process
33
    viewvalues,
34
)
35
36
37
# The io module exists in Python 2.7 but lacks optimisation. Most uses are not
38
# performance critical, but want to measure before switching from cStringIO.
39
if PY3:
6621.22.2 by Martin
Use BytesIO or StringIO from bzrlib.sixish
40
    import io as _io
41
    BytesIO = _io.BytesIO
42
    StringIO = _io.StringIO
6651.2.2 by Martin
Apply 2to3 xrange fix and fix up with sixish range
43
    from builtins import range, map, zip
6621.10.1 by Martin
Add bzrlib.sixish module to help porting process
44
else:
45
    from cStringIO import StringIO as BytesIO
46
    from StringIO import StringIO
6631.2.3 by Martin
Fix per_versionedfile test failures and rethink future_builtins
47
    from future_builtins import zip, map
6651.2.2 by Martin
Apply 2to3 xrange fix and fix up with sixish range
48
    range = xrange