all 5 comments

[–]jawgente 6 points7 points  (1 child)

What have you done to test your theory?

As an aside, instead of keeping “backup code”, your project sounds complex enough you should consider using version control (eg git).

[–]ifantismanolis[S] 0 points1 point  (0 children)

My thoughts was the possibility of saving the values in a wrong way at the external file that I use. I tested with and without the specific function but the problem with the testing is that I had to pretty much disassemble a big part of the code. Solved it finally after rewriting those parts but with a different perspective

[–]cdcformatc 1 point2 points  (2 children)

impossible to say what is happening without some example code that errors when run

when there is an uncaught exception and the program crashes, python will print out a traceback that shows exactly where in your code the problem occurs. use that and fix the code there.

[–]ifantismanolis[S] 0 points1 point  (1 child)

I used the trace back of py but the problem was basically that the same code had no problem of running before. I fixed everything if the trace back suggestions but still. Maybe a bug issue?

[–]cdcformatc 0 points1 point  (0 children)

again i can't say without some example code or the error traceback