mirror of
https://github.com/python/cpython.git
synced 2025-08-26 19:55:24 +00:00
M PyShell.py
M idle M idle.py M idle.pyw M setup.py Switch back to installing IDLE as a package. The IDLE GUI and the subprocess will both attempt to start up via the package mechanism, but if IDLE is not yet installed it is possible to run by calling python idle.py in the IDLE source directory, or to add the source directory to sys.path. One advantage of doing it this way is IDLE stays off sys.path. Developed in collaboration with Tony Lownds.
This commit is contained in:
parent
12bf339aea
commit
f4f4276815
5 changed files with 35 additions and 15 deletions
|
@ -319,9 +319,15 @@ class ModifiedInterpreter(InteractiveInterpreter):
|
|||
# XXX what about warnoptions?
|
||||
return [sys.executable, '-p', str(self.port)]
|
||||
else:
|
||||
w = ['-W' + s for s in sys.warnoptions]
|
||||
return [sys.executable] + w \
|
||||
+ ["-c", "__import__('run').main()", str(self.port)]
|
||||
w = ['-W' + s for s in sys.warnoptions]
|
||||
# Maybe IDLE is installed and is being accessed via sys.path,
|
||||
# or maybe it's not installed and the idle.py script is being
|
||||
# run from the IDLE source directory.
|
||||
if __name__ == 'idlelib.PyShell':
|
||||
command = "__import__('idlelib.run').run.main()"
|
||||
else:
|
||||
command = "__import__('run').main()"
|
||||
return [sys.executable] + w + ["-c", command, str(self.port)]
|
||||
|
||||
def start_subprocess(self):
|
||||
addr = ("localhost", self.port)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue