id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
246,scientific notation resolver bug,genericsoma@…,xi,"There is a problem with scientific notation for numbers without floating point and also without '+' or '-' after 'e'. They are resolved as strings instead of float.

{{{
>>> import yaml
>>> yaml.load('2e5')
'2e5'
}}}

Attached patch solves this problem by providing a more complex implicit float resolver.

See also: http://code.google.com/p/snakeyaml/issues/detail?id=130",defect,new,normal,pyyaml,normal,,scientific float resolve,
