﻿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
10201	serializers.serialize loses microseconds information.	Nikolay	nobody	"An example to show the bug nature:
{{{
>>> HRActionEvent.objects.all()[1:2]
[<HRActionEvent: [2009-02-04 11:13:35.588976] ""SendEmail4"">]
>>> HRActionEvent.objects.all()[1].time
datetime.datetime(2009, 2, 4, 11, 13, 35, 588976)
>>> serializers.serialize('xml', HRActionEvent.objects.all()[1:2])
'<?xml version=""1.0"" encoding=""utf-8""?>
<django-objects version=""1.0"">
 <object pk=""655"" model=""hrdb.hractionevent"">
  <field type=""DateTimeField"" name=""time"">2009-02-04 11:13:35</field>
  <field to=""hrdb.hraction"" name=""action"" rel=""ManyToOneRel"">13</field>
  <field type=""BooleanField"" name=""action_sent_for_exec"">True</field>
  <field type=""BooleanField"" name=""action_executed"">True</field>
 </object>
</django-objects>'
}}}

Significant information about 588976 microseconds has been lost during serialization."	Bug	closed	Core (Serialization)	1.0	Normal	fixed			Design decision needed	0	0	0	0	0	0
