[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
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?
# code describing the issue:
# define float constants with double-precision:
# copied from fpconst module:
http://w