Commit b7a690ae authored by Senthil Kumaran's avatar Senthil Kumaran

merge from 3.2 - Add the missing quote_plus call. Fix closes Issue12924

parents 88354ed8 305a68eb
......@@ -490,6 +490,7 @@ class QuotingTests(unittest.TestCase):
result = urllib.parse.quote(partial_quote)
self.assertEqual(expected, result,
"using quote(): %r != %r" % (expected, result))
result = urllib.parse.quote_plus(partial_quote)
self.assertEqual(expected, result,
"using quote_plus(): %r != %r" % (expected, result))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment