summaryrefslogtreecommitdiffstats
path: root/Lib/wsgiref/util.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-12-29 06:30:19 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-12-29 06:30:19 (GMT)
commit559395fde0d935dc5ae2891b73ac0c41cf00afb1 (patch)
treebf87bb1f18d2543e0e6cc607e8d1e0e83fe7baf0 /Lib/wsgiref/util.py
parent0df73674e5f2000dee01c130435c50500d599c60 (diff)
downloadcpython-559395fde0d935dc5ae2891b73ac0c41cf00afb1.zip
cpython-559395fde0d935dc5ae2891b73ac0c41cf00afb1.tar.gz
cpython-559395fde0d935dc5ae2891b73ac0c41cf00afb1.tar.bz2
Merged revisions 87564 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87564 | senthil.kumaran | 2010-12-29 14:25:42 +0800 (Wed, 29 Dec 2010) | 3 lines Fix Issue 10753 - Don't quote ;=, in the PATH_INFO envvar. ........
Diffstat (limited to 'Lib/wsgiref/util.py')
-rw-r--r--Lib/wsgiref/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/wsgiref/util.py b/Lib/wsgiref/util.py
index 39e05f1..194b187 100644
--- a/Lib/wsgiref/util.py
+++ b/Lib/wsgiref/util.py
@@ -64,7 +64,7 @@ def request_uri(environ, include_query=1):
"""Return the full request URI, optionally including the query string"""
url = application_uri(environ)
from urllib import quote
- path_info = quote(environ.get('PATH_INFO',''))
+ path_info = quote(environ.get('PATH_INFO',''),safe='/;=,')
if not environ.get('SCRIPT_NAME'):
url += path_info[1:]
else: