Strange exceptions when stopping debug server - PyCharm 2.0.1 with Django
Hello everyone. I have upgraded my PyCharm from 1.5.4 to 2.0.1 yesterday, and since then I have some strange error messages when I want to stop my debug server. I am going to post parts of my debug console while I am using debug to show you all what I mean by "strange exceptions".
I am using PyCharm for developing a Django application and I have the same debug configuration as in the 1.5.4 version. This is what happens if I just run debug and click stop without actually doing anything (eg: just start -> wait for it to run -> stop):
case #1:
1) run the debug:
/home/path_to_my_virtual_env/bin/python /home/path_to_pycharm201/helpers/pydev/pydevd.py --client 127.0.0.1 --port 54659 --file webapp/manage.py runserver --noreload 8000 --insecure
PyDev console: using IPython 0.10
pydev debugger: starting
Connected to pydev debugger (build 111.107)
Validating models...
0 errors found
Django version 1.3, using settings 'webapp.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Please sign in to leave a comment.
I was getting a lot the exception in your case #2.
The problem was the version of ipython.
I used to have installed the 0.12 and you use (as I see) the 0.10.
I installed the version 0.11 and the problem was solved.