]> granicus.if.org Git - python/commitdiff
Backed out changeset ee51e3aef302 - it broke the test suite
authorAntoine Pitrou <solipsis@pitrou.net>
Fri, 29 Jun 2012 19:53:29 +0000 (21:53 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Fri, 29 Jun 2012 19:53:29 +0000 (21:53 +0200)
Lib/urlparse.py

index 1b2c921c9300c9863b90ae9b57a187b4340222d2..8a207565030567ea6507a617787541a7b10c416d 100644 (file)
@@ -127,8 +127,8 @@ def urlparse(url, scheme='', allow_fragments=True):
     Return a 6-tuple: (scheme, netloc, path, params, query, fragment).
     Note that we don't break the components up in smaller bits
     (e.g. netloc is a single string) and we don't expand % escapes."""
-    splitresult = urlsplit(url, scheme, allow_fragments)
-    scheme, netloc, url, query, fragment = splitresult
+    tuple = urlsplit(url, scheme, allow_fragments)
+    scheme, netloc, url, query, fragment = tuple
     if scheme in uses_params and ';' in url:
         url, params = _splitparams(url)
     else:
@@ -225,8 +225,7 @@ def urlunsplit(data):
     empty query; the RFC states that these are equivalent)."""
     scheme, netloc, url, query, fragment = data
     if netloc or (scheme and scheme in uses_netloc and url[:2] != '//'):
-        if url and url[:1] != '/':
-            url = '/' + url
+        if url and url[:1] != '/': url = '/' + url
         url = '//' + (netloc or '') + url
     if scheme:
         url = scheme + ':' + url
@@ -308,7 +307,7 @@ def urldefrag(url):
 # update it also in urllib.  This code duplication does not existin in Python3.
 
 _hexdig = '0123456789ABCDEFabcdef'
-_hextochr = dict((a+b, chr(int(a+b, 16)))
+_hextochr = dict((a+b, chr(int(a+b,16)))
                  for a in _hexdig for b in _hexdig)
 
 def unquote(s):
@@ -345,13 +344,13 @@ def parse_qs(qs, keep_blank_values=0, strict_parsing=0):
             If false (the default), errors are silently ignored.
             If true, errors raise a ValueError exception.
     """
-    parsed_result = {}
+    dict = {}
     for name, value in parse_qsl(qs, keep_blank_values, strict_parsing):
         if name in dict:
-            parsed_result[name].append(value)
+            dict[name].append(value)
         else:
-            parsed_result[name] = [value]
-    return parsed_result
+            dict[name] = [value]
+    return dict
 
 def parse_qsl(qs, keep_blank_values=0, strict_parsing=0):
     """Parse a query given as a string argument.