﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
31816	StreamingHttpResponse docs incorrectly specifies strings	Lincoln	nobody	"In the docs for `StreamingHttpResponse` [https://docs.djangoproject.com/en/dev/ref/request-response/#streaminghttpresponse-objects]

It says that ""It should be given an iterator that yields strings as content.""

But in the class there is

{{{
    def getvalue(self):
        return b''.join(self.streaming_content)
}}}

So I think the docs should specify that it be given an iterator of bytestrings instead.

That line of the docs hasn't changed since 2012 when it was added. I suspect that back then ""strings"" meant python2 strings."	Cleanup/optimization	new	Documentation	dev	Normal				Unreviewed	0	0	0	0	0	0
