Unfortunately (i guess), I am not doing any XML. However, I am taking
the previous suggestion of putting print lines in every other line of
my code and then seeing where it crashes. Hopefully, that will solve
the problem.
thanks for the suggestions everybody
-- Kiran
Frank Millman wrote:
> Kira
Kiran wrote:
> Hello All,
> In my program, I have a main thread which is the GUI (wxPython) and
> then a thread which goes and reads data from a socket. The reason this
> is in a different thread is because the data might take some time to
> come back, and I want to have the GUI to be responsiv
if you don't know exactly which line of code causes the segfault, use
print statements to determine that. then try to either
redesign/refactor so that line isn't necessary, or protect its
operation somehow.
if you do know, tell us what it is and we might not need to see all
your code.
Kiran wrote: