Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a31e1 commit e9802a3Copy full SHA for e9802a3
2 files changed
Lib/idlelib/NEWS.txt
@@ -1,7 +1,10 @@
1
-What's New in IDLE 1.0+?
+What's New in IDLE 1.1a0?
2
===================================
3
4
-*Release date: XX-XXX-2003*
+*Release date: XX-XXX-2004*
5
+
6
+- Print correct exception even if source file changed since shell was
7
+ restarted. IDLEfork Patch 869012 Noam Raphael
8
9
- Keybindings with the Shift modifier now work correctly. So do bindings which
10
use the Space key. Limit unmodified user keybindings to the function keys.
Lib/idlelib/run.py
@@ -109,6 +109,8 @@ def manage_socket(address):
109
server.handle_request() # A single request only
110
111
def print_exception():
112
+ import linecache
113
+ linecache.checkcache()
114
flush_stdout()
115
efile = sys.stderr
116
typ, val, tb = excinfo = sys.exc_info()
0 commit comments