Running a server (Python built) in PyCharm with tkinter
So I created a server in Python and used tkinter for handling server logs. And because PyCharm states what type of error it is, clearly, I ran it using PyCharm. The error code on exit was `exit code -805306369 (0xCFFFFFFF)`. Also before getting this error the tkinter window went into "Not Responding" mode. Please help me understand the exit codes.
Please sign in to leave a comment.
Hi, do you get the same behavior when running your code from the terminal outside of IDE?
If negative, we would need a project sample, steps to reproduce the issue and the exact error output to investigate the issue.
Yup I do, but there the window goes into "Not Responding" mode and closes down after reporting the issue to Microsoft and the shell restarts (for some reason IDK).
To get an idea here is the main() of the server.py:
One more thing, the mainloop() doesn't work if placed after join() without root.after(). But when the code is run in the above manner the issue happens.