4 Aug 2009 15:25
Merging VIDLE differences into idlelib
Guilherme Polo <ggpolo <at> gmail.com>
2009-08-04 13:25:07 GMT
2009-08-04 13:25:07 GMT
Hi there, I have verified the VIDLE fork last week expecting to find many differences between it and IDLE. Most files differ but it turned out that most of these differences are equivalent (many of the changes were merged already), except for two of them. One of these changes is related to py2app, so I can't verify it. The second is about using the subprocess module to spawn the subprocess, so it is easier to terminate it properly under Windows (the original code was a bit different since it was done before Python 2.6). I'm not a heavy Windows so I can't tell how much this helps, my guess is that it would help with http://bugs.python.org/issue2708. Do anyone believe these changes could help IDLE ? Index: Lib/idlelib/PyShell.py =================================================================== --- Lib/idlelib/PyShell.py (revision 74191) +++ Lib/idlelib/PyShell.py (working copy) <at> <at> -11,6 +11,7 <at> <at> import threading import traceback import types +import subprocess import macosxSupport import linecache <at> <at> -40,11 +41,6 <at> <at> HOST = '127.0.0.1' # python execution server on localhost loopback PORT = 0 # someday pass in host, port for remote debug capability(Continue reading)
RSS Feed