/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-02-03 23:21:15 UTC
  • mfrom: (7290.42.6 paramiko-compat)
  • Revision ID: breezy.the.bot@gmail.com-20200203232115-g7k11bhsfeiqcprv
Fix compatibility with newer versions of paramiko, which break on noise before keys in pem files.

Merged from https://code.launchpad.net/~jelmer/brz/paramiko-compat/+merge/378480

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
    get_unbound_function,
 
28
    indexbytes,
 
29
    int2byte,
 
30
    PY3,
 
31
    reraise,
 
32
    string_types,
 
33
    text_type,
 
34
    unichr,
 
35
    viewitems,
 
36
    viewkeys,
 
37
    viewvalues,
 
38
    )  # noqa: F401
 
39
 
 
40
 
 
41
# The io module exists in Python 2.7 but lacks optimisation. Most uses are not
 
42
# performance critical, but want to measure before switching from cStringIO.
 
43
if PY3:
 
44
    import io as _io
 
45
    BytesIO = _io.BytesIO
 
46
    StringIO = _io.StringIO
 
47
    from builtins import range, map, zip
 
48
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
 
53
 
 
54
 
 
55
# GZ 2017-06-10: Work out if interning bits of inventory is behaviour we want
 
56
# to retain outside of StaticTuple, if so need to implement for Python 3.
 
57
if PY3:
 
58
    def bytesintern(b):
 
59
        """Dummy intern() function."""
 
60
        return b
 
61
else:
 
62
    bytesintern = intern