Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b6c26e commit f516388Copy full SHA for f516388
1 file changed
Lib/test/test_urlparse.py
@@ -847,6 +847,14 @@ def test_telurl_params(self):
847
self.assertEqual(p1.path, '863-1234')
848
self.assertEqual(p1.params, 'phone-context=+1-914-555')
849
850
+ def test_unwrap(self):
851
+ url = urllib.parse.unwrap('<URL:type://host/path>')
852
+ self.assertEqual(url, 'type://host/path')
853
+
854
+ def test_Quoter_repr(self):
855
+ quoter = urllib.parse.Quoter(urllib.parse._ALWAYS_SAFE)
856
+ self.assertIn('Quoter', repr(quoter))
857
858
859
def test_main():
860
support.run_unittest(UrlParseTestCase)
0 commit comments