View Single Post
  #5  
Old 11-02-2005, 08:22 PM
Vygreif Vygreif is offline
Member
 
Join Date: Sep 2005
Posts: 21
But . . . one more question.
I have

s = pickle.dumps(localStats)
t = pickle.dumps(localData)
network.send(s,t)

And as far as I can tell nothing gets sent, I never recieve anything with that code.

And I'm pretty sure the pickiling works because when I print s, t
I get a long string back.
I also tested network.send for integers (eg network.send(5)), and that sends fine.
Is there a limit to the size of the file that network.send can take? Or can you think of another reason why the program is failing?

Thanks,
YG
Reply With Quote