Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f0db92a6
Commit
f0db92a6
authored
Oct 12, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #813342: Start the IDLE subprocess with -Qnew if the parent
is started with that option. (backport from rev. 52295)
parent
bdbb9c62
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+2
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/idlelib/PyShell.py
View file @
f0db92a6
...
...
@@ -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.
...
...
Misc/NEWS
View file @
f0db92a6
...
...
@@ -66,6 +66,9 @@ Extension Modules
Library
-------
- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
is started with that option.
- Bug #1446043: correctly raise a LookupError if an encoding name given
to encodings.search_function() contains a dot.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment