mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
merge heads
This commit is contained in:
commit
831ae8454d
2 changed files with 7 additions and 0 deletions
|
@ -297,6 +297,11 @@ class MyHandler(rpc.RPCHandler):
|
||||||
# page help() text to shell.
|
# page help() text to shell.
|
||||||
import pydoc # import must be done here to capture i/o binding
|
import pydoc # import must be done here to capture i/o binding
|
||||||
pydoc.pager = pydoc.plainpager
|
pydoc.pager = pydoc.plainpager
|
||||||
|
|
||||||
|
# Keep a reference to stdin so that it won't try to exit IDLE if
|
||||||
|
# sys.stdin gets changed from within IDLE's shell. See issue17838.
|
||||||
|
self._keep_stdin = sys.stdin
|
||||||
|
|
||||||
self.interp = self.get_remote_proxy("interp")
|
self.interp = self.get_remote_proxy("interp")
|
||||||
rpc.RPCHandler.getresponse(self, myseq=None, wait=0.05)
|
rpc.RPCHandler.getresponse(self, myseq=None, wait=0.05)
|
||||||
|
|
||||||
|
|
|
@ -147,6 +147,8 @@ Library
|
||||||
IDLE
|
IDLE
|
||||||
----
|
----
|
||||||
|
|
||||||
|
- Issue #17838: Allow sys.stdin to be reassigned.
|
||||||
|
|
||||||
- Issue #13495: Avoid loading the color delegator twice in IDLE.
|
- Issue #13495: Avoid loading the color delegator twice in IDLE.
|
||||||
|
|
||||||
- Issue #17798: Allow IDLE to edit new files when specified on command line.
|
- Issue #17798: Allow IDLE to edit new files when specified on command line.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue