diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2009-03-30 21:51:50 +0000 |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2009-03-30 21:51:50 +0000 |
commit | 5e95e763e1ba51b9bd4153aa016099e183b05434 (patch) | |
tree | 7014625e7ad52f519804a78ee29588ab04711981 /Lib/test/test_urlparse.py | |
parent | e7c9e092b3d339718b0794f6a593a5032b6b9fb5 (diff) | |
download | cpython-git-5e95e763e1ba51b9bd4153aa016099e183b05434.tar.gz |
Fix for bugs: Issue4675 and Issue4962.
Diffstat (limited to 'Lib/test/test_urlparse.py')
-rw-r--r-- | Lib/test/test_urlparse.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py index fcd19894b9..e7a8317323 100644 --- a/Lib/test/test_urlparse.py +++ b/Lib/test/test_urlparse.py @@ -96,6 +96,9 @@ class UrlParseTestCase(unittest.TestCase): '', '', ''), ('mms', 'wms.sys.hinet.net', '/cts/Drama/09006251100.asf', '', '')), + ('nfs://server/path/to/file.txt', + ('nfs', 'server', '/path/to/file.txt', '', '', ''), + ('nfs', 'server', '/path/to/file.txt', '', '')), ('svn+ssh://svn.zope.org/repos/main/ZConfig/trunk/', ('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/', '', '', ''), |