mirror of https://github.com/python/cpython
Bug #813342: Start the IDLE subprocess with -Qnew if the parent
is started with that option.
This commit is contained in:
parent
fc8375748a
commit
d076153ee8
|
@ -351,6 +351,8 @@ class ModifiedInterpreter(InteractiveInterpreter):
|
||||||
|
|
||||||
def build_subprocess_arglist(self):
|
def build_subprocess_arglist(self):
|
||||||
w = ['-W' + s for s in sys.warnoptions]
|
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,
|
# Maybe IDLE is installed and is being accessed via sys.path,
|
||||||
# or maybe it's not installed and the idle.py script is being
|
# or maybe it's not installed and the idle.py script is being
|
||||||
# run from the IDLE source directory.
|
# run from the IDLE source directory.
|
||||||
|
|
|
@ -75,6 +75,9 @@ Core and builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
|
||||||
|
is started with that option.
|
||||||
|
|
||||||
- Bug #1565150: Fix subsecond processing for os.utime on Windows.
|
- Bug #1565150: Fix subsecond processing for os.utime on Windows.
|
||||||
|
|
||||||
- Support for MSVC 8 was added to bdist_wininst.
|
- Support for MSVC 8 was added to bdist_wininst.
|
||||||
|
|
Loading…
Reference in New Issue