id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
60,Error loading timestamps,miki@…,xi,"Try the following script:
{{{
#!/usr/bin/env python

import syck
from datetime import datetime

for i in range(10000):
    now = datetime.now()
    dumped = syck.dump(now)
    loaded = syck.load(dumped)
    if now != loaded:
        print ""original:"", now
        print ""result:"", loaded
        print ""dump:"", dumped
        break
}}}

I get:
{{{
original: 2007-09-17 11:04:08.091612
result: 2007-09-17 11:04:08.916120
dump: --- !timestamp 2007-09-17T11:04:08.091612
}}}

The YAML looks OK, so the parsing is wrong.",defect,closed,normal,pysyck,critical,fixed,,
