Note that the current string.atof doesn't always return a float:
>>> 4/string.atof('5')
0
>>> type( string.atof('5') )
<type 'int'>
>>>
I expect that a side-effect of reimplementing it in C is that atof will
always return a float (given legit input). True?
hopefully y'rs - tim
Tim Peters tim@ksr.com
not speaking for Kendall Square Research Corp