Hi,
I've just read in Python 2.5 description that IDLE 'executes code in a
separate process', using a TCP connection on port 127.0.0.1 to
communicate.
Does it mean that we can now debug embedded python with IDLE ?
Thanks for any feedback,
Emmanuel
--
http://mail.python.org/mailman/listinfo/
Hi all,
I've an application with embedded python.
In order to reload the python scripts, I end the python session, and
reopen one just after :
<...release used modules...>
Py_Finalize();
Py_Initialize();
<...Acquire relevant modules...>
In order to debug the python script, I recently tried win