mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
merge from 3.2 - Add the missing quote_plus call. Fix closes Issue12924
This commit is contained in:
commit
b7a690aeb4
1 changed files with 1 additions and 0 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue