Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2245)

Unified Diff: Lib/test/test_wsgiref.py

Issue 2827: [issue3300] urllib.quote and unquote - Unicode issues (Closed) Base URL: http://svn.python.org/view/*checkout*/python/branches/py3k/
Patch Set: patch 10 Created 15 years, 7 months ago , Downloaded from: http://bugs.python.org/file11111/parse.py.patch10
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Lib/test/test_wsgiref.py
===================================================================
--- Lib/test/test_wsgiref.py (revision 65675)
+++ Lib/test/test_wsgiref.py (working copy)
@@ -291,6 +291,7 @@
def testAppURIs(self):
self.checkAppURI("http://127.0.0.1/")
self.checkAppURI("http://127.0.0.1/spam", SCRIPT_NAME="/spam")
+ self.checkAppURI("http://127.0.0.1/sp%C3%A4m", SCRIPT_NAME="/späm")
self.checkAppURI("http://spam.example.com:2071/",
HTTP_HOST="spam.example.com:2071", SERVER_PORT="2071")
self.checkAppURI("http://spam.example.com/",
@@ -304,6 +305,7 @@
def testReqURIs(self):
self.checkReqURI("http://127.0.0.1/")
self.checkReqURI("http://127.0.0.1/spam", SCRIPT_NAME="/spam")
+ self.checkReqURI("http://127.0.0.1/sp%C3%A4m", SCRIPT_NAME="/späm")
self.checkReqURI("http://127.0.0.1/spammity/spam",
SCRIPT_NAME="/spammity", PATH_INFO="/spam")
self.checkReqURI("http://127.0.0.1/spammity/spam?say=ni",
« no previous file with comments | « Lib/test/test_urllib.py ('k') | Lib/urllib/parse.py » ('j') | Lib/urllib/parse.py » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b