From 2a41c6f108db0461ec99e61bedcf6971dff38ff6 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Tue, 5 Jan 2010 10:27:32 -0500 Subject: [PATCH] typo [thanks L.T.] --- http-web-services.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http-web-services.html b/http-web-services.html index 07d9d6a..18a0a7e 100755 --- a/http-web-services.html +++ b/http-web-services.html @@ -557,7 +557,7 @@ reply: 'HTTP/1.1 200 OK' >>> len(content) 6657
    -
  1. Instead of the feed, this time we’re going to download the site’s home page, which is HTML. Since this is the first time you’lve ever requested this page, httplib2 has little to work with, and it sends out a minimum of headers with the request. +
  2. Instead of the feed, this time we’re going to download the site’s home page, which is HTML. Since this is the first time you’ve ever requested this page, httplib2 has little to work with, and it sends out a minimum of headers with the request.
  3. The response contains a multitude of HTTP headers… but no caching information. However, it does include both an ETag and Last-Modified header.
  4. At the time I constructed this example, this page was 6657 bytes. It’s probably changed since then, but don’t worry about it.