﻿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
4199	Keyword argument error in serializers	Danny O'Brien <danny@…>	Jacob	"The last code example at http://www.djangoproject.com/documentation/0.96/serialization/
suggests this code:
{{{
#!python
json_serializer.serialize(queryset, ensure_ascii=False, stream=response)
}}}

but this returns 
<type 'exceptions.TypeError'>: unbound method serialize() must be called with Serializer instance as first argument (got QuerySet instance instead)

perhaps this is what's meant?

{{{
#!python
json_serializer = serializers.get_serializer(""json"")
json_serializer().serialize(queryset, ensure_ascii=False, stream=response)
}}}

(this returns with an unexpected keyword argument error for stream however)
"		closed	Core (Serialization)	dev		fixed			Unreviewed	1	0	0	0	0	0
