diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-01-05 15:13:49 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-01-05 15:13:49 (GMT) |
commit | 0589914e60e273678f5c0465d0a295df13c6f34a (patch) | |
tree | 2182ca5e677b0fff2b010a1bb80d7a34da5cd3c3 | |
parent | 9871d8fe22566acf68bf336d04d3a1dbd51f3269 (diff) | |
download | cpython-0589914e60e273678f5c0465d0a295df13c6f34a.zip cpython-0589914e60e273678f5c0465d0a295df13c6f34a.tar.gz cpython-0589914e60e273678f5c0465d0a295df13c6f34a.tar.bz2 |
Fix comment typo
-rw-r--r-- | Lib/test/test_urlparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py index b39f83b..bf9e317 100644 --- a/Lib/test/test_urlparse.py +++ b/Lib/test/test_urlparse.py @@ -255,7 +255,7 @@ class UrlParseTestCase(unittest.TestCase): self.assertEqual(p.geturl(), url) # Addressing issue1698, which suggests Username can contain - # "@" characters. Though not RFC complaint, many ftp sites allow + # "@" characters. Though not RFC compliant, many ftp sites allow # and request email addresses as usernames. url = "http://User@example.com:Pass@www.python.org:080/doc/?query=yes#frag" |