Re: ValueError in pickle module during unpickling a infinite float (python 2.5.2)

2008-03-12 Thread Peter Otten
[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

Re: ValueError in pickle module during unpickling a infinite float (python 2.5.2)

2008-03-12 Thread Mark Dickinson
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