From c07404dab3b9a224588732fde6c4c2758c1fb7aa Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 7 Jun 2014 22:21:44 +0300 Subject: [PATCH] http.client: Add basic example. --- http.client/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.client/test_client.py b/http.client/test_client.py index 00c00aa5..f2800dd5 100644 --- a/http.client/test_client.py +++ b/http.client/test_client.py @@ -2,7 +2,7 @@ from http.client import HTTPConnection conn = HTTPConnection("localhost") -#conn = HTTPConnection("micropython.org") +#conn = HTTPConnection("python.org") conn.request("GET", "/") resp = conn.getresponse() print(resp)