[EMAIL PROTECTED] wrote:
> Unpickling an infinite float caused a ValueError in the pickle module.
> I need to pickle and load infinite floats in my project. Do you have
> any suggestions how to solve the issue?
You could try another protocol. Does
>>> inf = 1e1000
>>> pickle.loads(pickle.dumps(i
On Mar 12, 11:22 am, [EMAIL PROTECTED] wrote:
> Unpickling an infinite float caused a ValueError in the pickle module.
> I need to pickle and load infinite floats in my project. Do you have
> any suggestions how to solve the issue?
Have you tried this on the recent 2.6 alpha (Python2.6a1)? It's
a