From 555ae88a3d137c6aba073c05c0eb0723edcd889a Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Fri, 5 Feb 2010 19:39:45 -0200 Subject: [PATCH] http: tiny-http: Minor note Signed-off-by: Luiz Capitulino --- http/tiny-http | 1 + 1 file changed, 1 insertion(+) diff --git a/http/tiny-http b/http/tiny-http index 1a72b3a..7c9266e 100755 --- a/http/tiny-http +++ b/http/tiny-http @@ -163,6 +163,7 @@ class TinyHttp: buf = '' while True: buf += csock.recv(4096) + # XXX: Too lazy, supports only GET and HEAD if buf.endswith('\r\n\r\n'): return HttpRequest(buf) -- 2.11.4.GIT