Re: [Tutor] Unpickling data after passing over the network

2007-02-11 Thread Daniel Yoo
> a socket. Right now, I am pickling a basic string base 64 encoding and > sending the data over the network. After the recipient client/server > receives the data, it is decoded and then unpickled. The unpickling > fails with an EOFError, and I am not sure why. Hi Adam, Did you "flush" the

Re: [Tutor] Unpickling data after passing over the network

2007-02-11 Thread Kent Johnson
Adam Pridgen wrote: > Hello, > > I am having problems with unpickling data after I pass the data through > a socket. Right now, I am pickling a basic string base 64 encoding and > sending the data over the network. After the recipient client/server > receives the data, it is decoded and then

[Tutor] Unpickling data after passing over the network

2007-02-11 Thread Adam Pridgen
Hello, I am having problems with unpickling data after I pass the data through a socket. Right now, I am pickling a basic string base 64 encoding and sending the data over the network. After the recipient client/server receives the data, it is decoded and then unpickled. The unpickling fai