is there a possibility to parse in Python a string that was written from a Java Double.toHexString method?
http://docs.oracle.com/javase/7/docs/api/java/lang/Double.html#toHexString(double)
The output looks like this: '0x1.16d6b97e718ffp8' ... not sure, whether this is a standardized format.
I would expect something like
value=float('0x1.16d6b97e718ffp8')