mirror of
https://github.com/python/cpython.git
synced 2025-08-20 00:32:12 +00:00
Bug #813342: Start the IDLE subprocess with -Qnew if the parent
is started with that option. (backport from rev. 52295)
This commit is contained in:
parent
bdbb9c62de
commit
f0db92a676
2 changed files with 5 additions and 0 deletions
|
@ -351,6 +351,8 @@ class ModifiedInterpreter(InteractiveInterpreter):
|
|||
|
||||
def build_subprocess_arglist(self):
|
||||
w = ['-W' + s for s in sys.warnoptions]
|
||||
if 1/2 > 0: # account for new division
|
||||
w.append('-Qnew')
|
||||
# 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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue