|
Prev: do a sed / awk filter with python tools (at least as fast)
Next: Memory error while saving dictionary of size 65000X50 using pickle
From: ssecorp on 7 Jul 2008 13:36 i know, idid try it again and it works as expected. but how the h*** did it not work that one time?
From: Jorgen Bodde on 8 Jul 2008 04:12
Maybe the interpreter remembered the values of some objects you used? If you type in the interpreter, the objects you create have a lifetime as long as the interpreter is active, which means it can get a state behaviour that otherwise is not present if you start a new interpreter instance. To be safe you should always try it with a script and run it from the commandline to get the same 'state' everytime your script runs. - Jorgen On Mon, Jul 7, 2008 at 7:36 PM, ssecorp <circularfunc(a)gmail.com> wrote: > i know, idid try it again and it works as expected. but how the h*** > did it not work that one time? > -- > http://mail.python.org/mailman/listinfo/python-list > |