From 1c168d8eebd927d95f069848568262ebc0b90cd6 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 26 Mar 2006 20:59:38 +0000 Subject: Bug #1457264: parse http://host?query correctly in urllib --- Lib/urllib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/urllib.py b/Lib/urllib.py index aeca3f1..d1c50f6 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -1031,7 +1031,7 @@ def splithost(url): global _hostprog if _hostprog is None: import re - _hostprog = re.compile('^//([^/]*)(.*)$') + _hostprog = re.compile('^//([^/?]*)(.*)$') match = _hostprog.match(url) if match: return match.group(1, 2) -- cgit v0.12