~mthaddon/bzr/trunk

« back to all changes in this revision

Viewing changes to bzrlib/transport/gio_transport.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-07-25 14:01:28 UTC
  • mfrom: (6039.1.9 transport-from-url)
  • Revision ID: pqm@pqm.ubuntu.com-20110725140128-croovh96z0rs57yy
(jelmer) Add get_transport_from_url and get_transport_from_path functions.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
supported by gio.
25
25
"""
26
26
from cStringIO import StringIO
27
 
import getpass
28
27
import os
29
28
import random
30
 
import socket
31
29
import stat
32
 
import urllib
33
30
import time
34
 
import sys
35
 
import getpass
36
31
import urlparse
37
32
 
38
33
from bzrlib import (
49
44
    deprecated_passed,
50
45
    warn,
51
46
    )
52
 
from bzrlib.trace import mutter, warning
 
47
from bzrlib.trace import mutter
53
48
from bzrlib.transport import (
54
49
    FileStream,
55
50
    ConnectedTransport,
56
51
    _file_streams,
57
 
    Server,
58
52
    )
59
53
 
60
54
from bzrlib.tests.test_server import TestServer