diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-06-22 07:56:22 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-06-22 07:56:22 (GMT) |
commit | 8da85a173a23e9b6fbbbd2511bc713d162fcb801 (patch) | |
tree | c4285d62099f0265d44da407570ef6643e349ebe | |
parent | 7a5691f0ba84f1f9a9eaa8be41d4361397737b10 (diff) | |
download | cpython-8da85a173a23e9b6fbbbd2511bc713d162fcb801.zip cpython-8da85a173a23e9b6fbbbd2511bc713d162fcb801.tar.gz cpython-8da85a173a23e9b6fbbbd2511bc713d162fcb801.tar.bz2 |
Fix the urllib.parse.urljoin docs. Reported by Bo Bayles in docs list.
-rw-r--r-- | Doc/library/urlparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst index 1f05e5b..b933dda 100644 --- a/Doc/library/urlparse.rst +++ b/Doc/library/urlparse.rst @@ -258,7 +258,7 @@ The :mod:`urlparse` module defines the following functions: .. doctest:: - >>> urljoin('https://www.cwi.nl/%7Eguido/Python.html', + >>> urljoin('http://www.cwi.nl/%7Eguido/Python.html', ... '//www.python.org/%7Eguido') 'http://www.python.org/%7Eguido' |