From 8b4a272c98249a8d42e0738a6f0d28e724efd7a3 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Wed, 16 Apr 2014 23:33:02 -0400 Subject: [PATCH] =?UTF-8?q?Correct=20the=20URL=20in=20the=20http.client=20?= =?UTF-8?q?example.=20Noted=20by=20Evens=20Fortun=C3=A9.=20Closes=20#21229?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Doc/library/http.client.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 10704cef2d1..9f6bcd1d6b7 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***"