diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2014-04-17 03:33:02 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2014-04-17 03:33:02 (GMT) |
commit | 8b4a272c98249a8d42e0738a6f0d28e724efd7a3 (patch) | |
tree | 4979a7c19eaee0c1a97898b993b4a3c35e283fad /Doc/library/http.client.rst | |
parent | f7f981829bd723ba9275e25238acb5472e51f507 (diff) | |
download | cpython-8b4a272c98249a8d42e0738a6f0d28e724efd7a3.zip cpython-8b4a272c98249a8d42e0738a6f0d28e724efd7a3.tar.gz cpython-8b4a272c98249a8d42e0738a6f0d28e724efd7a3.tar.bz2 |
Correct the URL in the http.client example. Noted by Evens Fortuné. Closes #21229
Diffstat (limited to 'Doc/library/http.client.rst')
-rw-r--r-- | Doc/library/http.client.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 10704ce..9f6bcd1 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -660,7 +660,7 @@ request using http.client:: >>> # This creates an HTTP message >>> # with the content of BODY as the enclosed representation - >>> # for the resource http://localhost:8080/foobar + >>> # for the resource http://localhost:8080/file ... >>> import http.client >>> BODY = "***filecontents***" |