id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc
208	Yaml doesn't parse ISO8601 datetimes if they do not include seconds.	mythmon@…	xi	"When YAML sees a ISO8601 date, or a datetime that includes seconds, it returns the right Python objects. But if the datetime only goes out to minutes and doesn't include the seconds, a plain string is returned.

Here is an example from a python interactive session:

{{{
>>> yaml.__version__
'3.10
>>> yaml.load('2011-10-24')
datetime.date(2011, 10, 24)
>>> yaml.load('2011-10-24 12:00:00')
datetime.datetime(2011, 10, 24, 12, 0)
>>> yaml.load('2011-10-24 12:00')
'2011-10-24 12:00'
}}}
"	defect	new	normal	pyyaml	normal			
