From: Senthil Kumaran Date: Thu, 17 Apr 2014 03:33:02 +0000 (-0400) Subject: Correct the URL in the http.client example. Noted by Evens Fortuné. Closes #21229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b4a272c98249a8d42e0738a6f0d28e724efd7a3;p=python Correct the URL in the http.client example. Noted by Evens Fortuné. Closes #21229 --- diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 10704cef2d..9f6bcd1d6b 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***"