/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/bzr/smart/message.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-06-12 01:45:56 UTC
  • mfrom: (7513.1.2 pypy3)
  • Revision ID: breezy.the.bot@gmail.com-20200612014556-tsc8assk3d0luziu
Avoid deprecated behaviour in ElementTree.

Merged from https://code.launchpad.net/~jelmer/brz/pypy3/+merge/385611

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from __future__ import absolute_import
18
 
 
19
17
try:
20
18
    from collections.abc import deque
21
19
except ImportError:  # python < 3.7
22
20
    from collections import deque
23
21
 
 
22
from io import (
 
23
    BytesIO,
 
24
    )
 
25
 
24
26
from ... import (
25
27
    debug,
26
28
    errors,
27
29
    )
28
 
from ...sixish import (
29
 
    BytesIO,
30
 
    )
31
30
from ...trace import mutter
32
31
 
33
32