[Python-checkins] python/dist/src/Lib/idlelib NEWS.txt, 1.27,
1.28 run.py, 1.26, 1.27
kbk at users.sourceforge.net
kbk at users.sourceforge.net
Thu Jan 1 23:04:06 EST 2004
Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1:/tmp/cvs-serv18778
Modified Files:
NEWS.txt run.py
Log Message:
- Print correct exception even if source file changed since shell was
restarted. IDLEfork Patch 869012 Noam Raphael
Modified Files:
NEWS.txt run.py
Index: NEWS.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/NEWS.txt,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** NEWS.txt 24 Nov 2003 05:26:16 -0000 1.27
--- NEWS.txt 2 Jan 2004 04:04:04 -0000 1.28
***************
*** 1,6 ****
! What's New in IDLE 1.0+?
===================================
! *Release date: XX-XXX-2003*
- Keybindings with the Shift modifier now work correctly. So do bindings which
--- 1,9 ----
! What's New in IDLE 1.1a0?
===================================
! *Release date: XX-XXX-2004*
!
! - Print correct exception even if source file changed since shell was
! restarted. IDLEfork Patch 869012 Noam Raphael
- Keybindings with the Shift modifier now work correctly. So do bindings which
Index: run.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/run.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** run.py 19 Nov 2003 04:52:32 -0000 1.26
--- run.py 2 Jan 2004 04:04:04 -0000 1.27
***************
*** 110,113 ****
--- 110,115 ----
def print_exception():
+ import linecache
+ linecache.checkcache()
flush_stdout()
efile = sys.stderr
More information about the Python-checkins
mailing list