﻿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
3878	(JSON)-serializing utf8 data fails	alex@…	Malcolm Tredinnick	"If i try to serialize data from the database (for example using fixtures), which is utf8-encoded, the JSON output will contain 
unicode-escapes (\uXXXX) which will not be loaded back allright.

Example:

{{{
>>> obj = Blah()
>>> obj.test = ""ö""
>>> obj.save()
}}}

{{{
./manage.py dumpdata > blah.json
./manage.py loaddata blah
}}}

{{{
>>> obj = Blah.objects.all()[0]
>>> print obj.test
blÃ¶k
}}}"		closed	Core (Serialization)	0.96		fixed	utf8 unicode-branch	django@… reza@…	Accepted	1	0	1	0	0	0
