~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/http_server.py

  • Committer: Patch Queue Manager
  • Date: 2015-12-17 18:39:00 UTC
  • mfrom: (6606.1.2 fix-float)
  • Revision ID: pqm@pqm.ubuntu.com-20151217183900-0719du2uv1kwu3lc
(vila) Inline testtools private method to fix an issue in xenial (the
 private implementation has changed in an backward incompatible way).
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import re
23
23
import SimpleHTTPServer
24
24
import socket
25
 
import urllib
26
25
import urlparse
27
26
 
 
27
from bzrlib import urlutils
28
28
from bzrlib.tests import test_server
29
29
 
30
30
 
336
336
        """
337
337
        # abandon query parameters
338
338
        path = urlparse.urlparse(path)[2]
339
 
        path = posixpath.normpath(urllib.unquote(path))
 
339
        path = posixpath.normpath(urlutils.unquote(path))
340
340
        path = path.decode('utf-8')
341
341
        words = path.split('/')
342
342
        words = filter(None, words)