diff options
| author | Fred Drake <fdrake@acm.org> | 2008-01-05 04:38:38 (GMT) | 
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 2008-01-05 04:38:38 (GMT) | 
| commit | f7476c4d463b5770b98d980bcd9bff3db981445d (patch) | |
| tree | fd3da3ea6c566754b16fe5b8e44f04aba18e0403 /Lib/test/test_urlparse.py | |
| parent | 1b50fd7cb3e9a4483f6da49c027ebde4501d1c17 (diff) | |
| download | cpython-f7476c4d463b5770b98d980bcd9bff3db981445d.zip cpython-f7476c4d463b5770b98d980bcd9bff3db981445d.tar.gz cpython-f7476c4d463b5770b98d980bcd9bff3db981445d.tar.bz2  | |
clean up a comment
Diffstat (limited to 'Lib/test/test_urlparse.py')
| -rw-r--r-- | Lib/test/test_urlparse.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py index 0df4058..b39f83b 100644 --- a/Lib/test/test_urlparse.py +++ b/Lib/test/test_urlparse.py @@ -255,8 +255,8 @@ class UrlParseTestCase(unittest.TestCase):          self.assertEqual(p.geturl(), url)          # Addressing issue1698, which suggests Username can contain -        # "@" character. Though not RFC complaint, many ftp sites allow -        # and requests email ids as usernames. +        # "@" characters.  Though not RFC complaint, many ftp sites allow +        # and request email addresses as usernames.          url = "http://User@example.com:Pass@www.python.org:080/doc/?query=yes#frag"          p = urlparse.urlsplit(url)  | 
