Actually, that was double precision. You asked for float precision.<br><br>>>> struct.unpack('f', struct.pack('L', 1))[0]<br>1.4012984643248171e-45<br><br>which is the same as:<br>>>> 2**-149<br>
1.4012984643248171e-45<br><br>I think that's it. Sorry for posting to the list three times in a row. corrections welcome.<br>