From: Georg Brandl Date: Fri, 13 Jan 2006 17:05:56 +0000 (+0000) Subject: Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters X-Git-Tag: v2.5a0~830 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45ab2339351db224062e0047ec88ea19392015b2;p=python Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters any more. --- diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py index eac95cab96..ea10fb7e92 100644 --- a/Lib/SimpleHTTPServer.py +++ b/Lib/SimpleHTTPServer.py @@ -14,6 +14,7 @@ import os import posixpath import BaseHTTPServer import urllib +import urlparse import cgi import shutil import mimetypes @@ -136,6 +137,8 @@ class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): probably be diagnosed.) """ + # abandon query parameters + path = urlparse.urlparse(path)[2] path = posixpath.normpath(urllib.unquote(path)) words = path.split('/') words = filter(None, words) diff --git a/Misc/NEWS b/Misc/NEWS index a95774fcec..be768d361a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -335,6 +335,9 @@ Extension Modules Library ------- +- Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters + any more. + - Bug #1403410: The warnings module now doesn't get confused when it can't find out the module name it generates a warning for.