Kaydet (Commit) 68b539ef authored tarafından Neal Norwitz's avatar Neal Norwitz

SF feature #618024, urlparse fails on imap://

üst 4f442372
......@@ -25,6 +25,9 @@ class UrlParseTestCase(unittest.TestCase):
('file:///tmp/junk.txt',
('file', '', '/tmp/junk.txt', '', '', ''),
('file', '', '/tmp/junk.txt', '', '')),
('imap://mail.python.org/mbox1',
('imap', 'mail.python.org', '/mbox1', '', '', ''),
('imap', 'mail.python.org', '/mbox1', '', '')),
]:
result = urlparse.urlparse(url)
self.assertEqual(result, parsed)
......
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