From d1cab4aff57e000d351d168210a71377c8111726 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 24 Jul 2016 20:58:27 -0400 Subject: [PATCH] httpclient: clarify docs of HTTPResponse.body Closes #1775 --- tornado/httpclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/httpclient.py b/tornado/httpclient.py index c62b6207..762919ee 100644 --- a/tornado/httpclient.py +++ b/tornado/httpclient.py @@ -530,7 +530,7 @@ class HTTPResponse(object): * buffer: ``cStringIO`` object for response body - * body: response body as string (created on demand from ``self.buffer``) + * body: response body as bytes (created on demand from ``self.buffer``) * error: Exception object, if any