[Python-checkins] python/dist/src/Lib/idlelib NEWS.txt, 1.23.4.2, 1.23.4.3 idlever.py, 1.15, 1.15.4.1 run.py, 1.25, 1.25.8.1

kbk at users.sourceforge.net kbk at users.sourceforge.net
Sun Nov 23 21:34:03 EST 2003


Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1:/tmp/cvs-serv15104

Modified Files:
      Tag: release23-maint
	NEWS.txt idlever.py run.py 
Log Message:
Backport:

- After an exception, run.py was not setting the exception vector. Noam
  Raphael suggested correcting this so pdb's postmortem pm() would work. 
  IDLEfork Patch 844675

Update NEWS and include some items missed in IDLE1.0b2.

Bump the version.

Modified Files:
 Tag: release23-maint
 NEWS.txt idlever.py run.py 


Index: NEWS.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/NEWS.txt,v
retrieving revision 1.23.4.2
retrieving revision 1.23.4.3
diff -C2 -d -r1.23.4.2 -r1.23.4.3
*** NEWS.txt	23 Sep 2003 08:12:13 -0000	1.23.4.2
--- NEWS.txt	24 Nov 2003 02:34:01 -0000	1.23.4.3
***************
*** 1,2 ****
--- 1,16 ----
+ What's New in IDLE 1.0.2?
+ ===================================
+ 
+ *Release date: XX-Dec-2003*
+ 
+ - After an exception, run.py was not setting the exception vector. Noam
+   Raphael suggested correcting this so pdb's postmortem pm() would work. 
+   IDLEfork Patch 844675
+ 
+ - IDLE now does not fail to save the file anymore if the Tk buffer is not a
+   Unicode string, yet eol_convention is.  Python Bugs 774680, 788378
+ 
+ - IDLE will use the Python html docs on the system, if found
+ 
  What's New in IDLE 1.0.1?
  ===================================
***************
*** 52,55 ****
--- 66,79 ----
  
  *Release date: 29-Jun-2003*
+ 
+ - Extend AboutDialog.ViewFile() to support file encodings.  Make the CREDITS
+   file Latin-1.
+ 
+ - Updated the About dialog to reflect re-integration into Python.  Provide
+   buttons to display Python's NEWS, License, and Credits, plus additional
+   buttons for IDLE's README and NEWS.
+ 
+ - TextViewer() now has a third parameter which allows inserting text into the
+   viewer instead of reading from a file.
  
  - (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of

Index: idlever.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/idlever.py,v
retrieving revision 1.15
retrieving revision 1.15.4.1
diff -C2 -d -r1.15 -r1.15.4.1
*** idlever.py	27 Jul 2003 00:56:41 -0000	1.15
--- idlever.py	24 Nov 2003 02:34:01 -0000	1.15.4.1
***************
*** 1 ****
! IDLE_VERSION = "1.0"
--- 1 ----
! IDLE_VERSION = "1.0.1+"

Index: run.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/run.py,v
retrieving revision 1.25
retrieving revision 1.25.8.1
diff -C2 -d -r1.25 -r1.25.8.1
*** run.py	22 Jun 2003 07:52:56 -0000	1.25
--- run.py	24 Nov 2003 02:34:01 -0000	1.25.8.1
***************
*** 112,116 ****
      flush_stdout()
      efile = sys.stderr
!     typ, val, tb = sys.exc_info()
      tbe = traceback.extract_tb(tb)
      print >>efile, '\nTraceback (most recent call last):'
--- 112,117 ----
      flush_stdout()
      efile = sys.stderr
!     typ, val, tb = excinfo = sys.exc_info()
!     sys.last_type, sys.last_value, sys.last_traceback = excinfo
      tbe = traceback.extract_tb(tb)
      print >>efile, '\nTraceback (most recent call last):'





More information about the Python-checkins mailing list