~ubuntu-branches/ubuntu/quantal/python2.7/quantal

« back to all changes in this revision

Viewing changes to Lib/wsgiref/util.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-05-30 06:44:23 UTC
  • mto: (27.1.6 oneiric) (36.1.11 sid)
  • mto: This revision was merged to the branch mainline in revision 32.
  • Revision ID: james.westby@ubuntu.com-20110530064423-zj6auh76957umtm4
Tags: upstream-2.7.2~rc1
ImportĀ upstreamĀ versionĀ 2.7.2~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    """Return the full request URI, optionally including the query string"""
65
65
    url = application_uri(environ)
66
66
    from urllib import quote
67
 
    path_info = quote(environ.get('PATH_INFO',''))
 
67
    path_info = quote(environ.get('PATH_INFO',''),safe='/;=,')
68
68
    if not environ.get('SCRIPT_NAME'):
69
69
        url += path_info[1:]
70
70
    else: