/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 breezy/sixish.py

  • Committer: Jelmer Vernooij
  • Date: 2018-05-06 11:48:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180506114854-h4qd9ojaqy8wxjsd
Move .mailmap to root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
from six import (
26
26
    binary_type,
27
 
    get_unbound_function,
28
27
    indexbytes,
29
28
    int2byte,
30
29
    PY3,
31
30
    reraise,
32
31
    string_types,
33
32
    text_type,
34
 
    unichr,
35
33
    viewitems,
36
34
    viewkeys,
37
35
    viewvalues,
38
 
    )  # noqa: F401
 
36
)
39
37
 
40
38
 
41
39
# The io module exists in Python 2.7 but lacks optimisation. Most uses are not
46
44
    StringIO = _io.StringIO
47
45
    from builtins import range, map, zip
48
46
else:
49
 
    from cStringIO import StringIO as BytesIO  # noqa: F401
50
 
    from StringIO import StringIO  # noqa: F401
51
 
    from future_builtins import zip, map  # noqa: F401
52
 
    range = xrange  # noqa: F821
 
47
    from cStringIO import StringIO as BytesIO
 
48
    from StringIO import StringIO
 
49
    from future_builtins import zip, map
 
50
    range = xrange
53
51
 
54
52
 
55
53
# GZ 2017-06-10: Work out if interning bits of inventory is behaviour we want