/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/transport/memory.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-22 00:52:45 UTC
  • mfrom: (6973.7.4 python3-f)
  • Revision ID: jelmer@jelmer.uk-20180622005245-0q92vv00fy9ouyqv
Merge lp:~jelmer/brz/python3-f

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from __future__ import absolute_import
24
24
 
25
25
import contextlib
 
26
from io import (
 
27
    BytesIO,
 
28
    )
26
29
import os
27
30
import errno
28
31
from stat import S_IFREG, S_IFDIR
37
40
    InProcessTransport,
38
41
    NoSuchFile,
39
42
    )
40
 
from ..sixish import (
41
 
    BytesIO,
42
 
    )
43
43
from ..transport import (
44
44
    AppendBasedFileStream,
45
45
    _file_streams,