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-Tag: v3.4.1rc1~56 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b4a272c98249a8d42e0738a6f0d28e724efd7a3;p=thirdparty%2FPython%2Fcpython.git 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 10704cef2d1b..9f6bcd1d6b72 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***"