summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/NEWS.txt
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2004-12-23 04:20:59 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2004-12-23 04:20:59 (GMT)
commit5c3df35b6b1f48cb48c91b0c7a8754590a694171 (patch)
tree00ccc7bcc4b1fc54472ca994cadc9c1ff4886720 /Lib/idlelib/NEWS.txt
parentee4bb6612a382af49cbb17629f9430afd7f746fa (diff)
downloadcpython-5c3df35b6b1f48cb48c91b0c7a8754590a694171.zip
cpython-5c3df35b6b1f48cb48c91b0c7a8754590a694171.tar.gz
cpython-5c3df35b6b1f48cb48c91b0c7a8754590a694171.tar.bz2
The GUI was hanging if the shell window was closed while a raw_input()
was pending. Restored the quit() of the readline() mainloop(). http://mail.python.org/pipermail/idle-dev/2004-December/002307.html M NEWS.txt M PyShell.py
Diffstat (limited to 'Lib/idlelib/NEWS.txt')
-rw-r--r--Lib/idlelib/NEWS.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index 1e12ca9..4bd5786 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -3,6 +3,10 @@ What's New in IDLE 1.2a0?
*Release date: XX-XXX-2005*
+- The GUI was hanging if the shell window was closed while a raw_input()
+ was pending. Restored the quit() of the readline() mainloop().
+ http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
+
- The remote procedure call module rpc.py can now access data attributes of
remote registered objects. Changes to these attributes are local, however.