Re: [ZODB] Problem with pickle in zodb

2018-06-04 Thread Etienne Robillard
Yup, that is correct! Thanks. :-) Etienne Le 2018-06-03 à 07:39, Jason Madden a écrit : You appear to have mismatched versions of ZEO on the client and server, 5.2 on one side and 5.1.0 on the other. Both need to be 5.2. On Jun 3, 2018, at 06:35, Etienne Robillard wrote: Hi, Any ideas wh

Problem with pickle in zodb

2018-06-03 Thread Etienne Robillard
Hi, Any ideas why this is happening ? erob@marina:/home/www/open-neurosecurity.org/trunk$ schevo editor zodb://127.0.0.1:4545 07:32:16 environ  No en_CA translation found for domain kiwi 07:32:16 environ  No en_CA translation found for domain gazpacho libschevo 4.0.1 ::

Re: Problem with pickle and restarting a program

2014-03-22 Thread dieter
peace writes: > On Thursday, March 20, 2014 1:20:03 AM UTC-7, dieter wrote: > ... >> You may want to use debugging to determine what goes on in detail. > ... > I tried doing that. I still could not figure out what was wrong. Thank you. Debugging is often not easy. An essential strategy is "divide

Re: Problem with pickle and restarting a program

2014-03-20 Thread peace
On Thursday, March 20, 2014 1:20:03 AM UTC-7, dieter wrote: > Peace <> writes: > > > ... > > > The serial number field always remains empty even though I enter from the > > GUI and the receiveSerialNumber function is called and I explicitly > > initialize it to the variable in the model. > > >

Re: Problem with pickle and restarting a program

2014-03-20 Thread dieter
Peace writes: > ... > The serial number field always remains empty even though I enter from the GUI > and the receiveSerialNumber function is called and I explicitly initialize it > to the variable in the model. > I'm trying to save the state of the program so that next time I open the > applic

Problem with pickle and restarting a program

2014-03-19 Thread Peace
In my GUI, the user enters two values: cellNumber(Integer) and SerialNumber(String) I have the following piece of code in my view/controller: The following function is called after the user enters the cellnumber and serial number## def ListenForDetails(status):

Re: problem with pickle

2007-07-07 Thread Lawrence Oluyede
K Gaur <[EMAIL PROTECTED]> wrote: > this is what the python interpreter returns on giving the basic > command > > >>>pickle.dump(x,f) where x is a tuple and f is a file object > > Traceback (most recent call last): > File "", line 1, in ? > NameError: name 'pickle' is not defined > > k

problem with pickle

2007-07-07 Thread K Gaur
hello everybody I've just started learning python . i stumbled upon this broad spectrum function 'pickle' but it is not getting executed as it should this is what the python interpreter returns on giving the basic command >>>pickle.dump(x,f) where x is a tuple and f is a file object Tra