diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-03-12 20:52:00 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-03-12 20:52:00 (GMT) |
commit | 94afd3095ee37dfcc672ebcd6ade8a3b00a39a69 (patch) | |
tree | f349081b0bd6e5157bc5b0e0c38acb4180ee89d6 /Lib/idlelib/NEWS.txt | |
parent | b1fbf855a37edb75c4438f773f8f2b9c7cf1cf4a (diff) | |
download | cpython-94afd3095ee37dfcc672ebcd6ade8a3b00a39a69.zip cpython-94afd3095ee37dfcc672ebcd6ade8a3b00a39a69.tar.gz cpython-94afd3095ee37dfcc672ebcd6ade8a3b00a39a69.tar.bz2 |
Move setting of ioready 'wait' earlier in call chain, to
rpc.SocketIO.main() and asyncreturn(). Improve comment.
Diffstat (limited to 'Lib/idlelib/NEWS.txt')
-rw-r--r-- | Lib/idlelib/NEWS.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index a0f1869..12e677d 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -7,11 +7,27 @@ What's New in IDLEfork 0.9 Alpha 3? *Release date: xx-xxx-2003* +- Implemented the 'interrupt' extension module, which allows a subthread + to raise a KeyboardInterrupt in the main thread. + +- Attempting to save the shell raised an error related to saving + breakpoints, which are not implemented in the shell + +- Provide a correct message when 'exit' or 'quit' are entered at the + IDLE command prompt SF 695861 + +- Eliminate extra blank line in shell output caused by not flushing + stdout when user code ends with an unterminated print. SF 695861 + +- Moved responsibility for exception formatting (i.e. pruning IDLE internal + calls) out of rpc.py into the client and server. + - Exit IDLE cleanly even when doing subprocess I/O - Handle subprocess interrupt in Windows with an RPC message. - Calling Run will restart the subprocess even if user code is running. + SF RFE 661321 - Restart the subprocess if it terminates itself. (VPython programs do that) |