~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/gio_transport.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-19 13:23:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6386.
  • Revision ID: jelmer@canonical.com-20111219132358-uvs5a6y92gomzacd
Move importing from future until after doc string, otherwise the doc string will disappear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#
17
17
# Author: Mattias Eriksson
18
18
 
19
 
from __future__ import absolute_import
20
 
 
21
19
"""Implementation of Transport over gio.
22
20
 
23
21
Written by Mattias Eriksson <snaggen@acc.umu.se> based on the ftp transport.
25
23
It provides the gio+XXX:// protocols where XXX is any of the protocols
26
24
supported by gio.
27
25
"""
 
26
 
 
27
from __future__ import absolute_import
 
28
 
28
29
from cStringIO import StringIO
29
30
import os
30
31
import random