[Idle-dev] CVS: idle INSTALL.txt,1.4,1.5 NEWS.txt,1.9,1.10 idlever.py,1.8,1.9

Kurt B. Kaiser kbk@users.sourceforge.net
Sun, 26 Jan 2003 18:40:22 -0800


Update of /cvsroot/idlefork/idle
In directory sc8-pr-cvs1:/tmp/cvs-serv18572

Modified Files:
	INSTALL.txt NEWS.txt idlever.py 
Log Message:
Update for release.
Modified Files:
 	INSTALL.txt NEWS.txt idlever.py 


Index: INSTALL.txt
===================================================================
RCS file: /cvsroot/idlefork/idle/INSTALL.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** INSTALL.txt	1 Jan 2003 01:14:13 -0000	1.4
--- INSTALL.txt	27 Jan 2003 02:40:20 -0000	1.5
***************
*** 19,32 ****
  	conflict with Python IDLE.
  
  IDLEfork-0.9xx.tar.gz
  	This is a distutils sdist (source) tarfile which can be used to make 
  	installations on platforms not supported by the above files.
! 	It remains configured to install as IDLE, not IDLEfork.
  
  	Unpack in ..../Tools/, cd to the IDLEfork directory created, and
! 	<python setup.py install> to install in ....site-packages/idlelib.  
  
          If you don't want to overwrite Python IDLE, it is also possible to
! 	simply run <python idle.py> to test in the IDLEfork source directory
  	without making an installation.  In this case, IDLE will not be on
  	your PATH unless you are in the source directory.  Also, it is then
--- 19,38 ----
  	conflict with Python IDLE.
  
+ 	The Python2 rpm is designed to work with Redhat systems prior to Rev 8.
+ 	It is available at http://www.python.org/2.2.2/rpms.html and
+ 	http://www.python.org/2.2.1/rpms.html .  See the warning/explanation
+ 	on the latter web page, which discusses the reason for python2.
+ 
  IDLEfork-0.9xx.tar.gz
  	This is a distutils sdist (source) tarfile which can be used to make 
  	installations on platforms not supported by the above files.
! 	** It remains configured to install as idlelib, not idleforklib. **
  
  	Unpack in ..../Tools/, cd to the IDLEfork directory created, and
! 	<python setup.py install> to install in ....site-packages/idlelib.
! 	This will overwrite the Python IDLE installation.  
  
          If you don't want to overwrite Python IDLE, it is also possible to
! 	simply call <python idle.py> to run from the IDLEfork source directory
  	without making an installation.  In this case, IDLE will not be on
  	your PATH unless you are in the source directory.  Also, it is then

Index: NEWS.txt
===================================================================
RCS file: /cvsroot/idlefork/idle/NEWS.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** NEWS.txt	17 Jan 2003 04:04:06 -0000	1.9
--- NEWS.txt	27 Jan 2003 02:40:20 -0000	1.10
***************
*** 6,10 ****
  ===================================
  
! *Release date: XX-XXX-2003*
  
  - Left cursor move in presence of selected text now moves from left end
--- 6,29 ----
  ===================================
  
! *Release date: 27-Jan-2003*
! 
! - Updated INSTALL.txt to claify use of the python2 rpm.
! 
! - Improved formatting in IDLE Help.
! 
! - Run menu: Replace "Run Script" with "Run Module".
! 
! - Code encountering an unhandled exception under the debugger now shows
!   the correct traceback, with IDLE internal levels pruned out.
! 
! - If an exception occurs entirely in IDLE, don't prune the IDLE internal
!   modules from the traceback displayed.
! 
! - Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
! 
! - IDLE icons will now install correctly even when setup.py is run from the
!   build directory
! 
! - Class Browser now compatible with Python2.3 version of pyclbr.py
  
  - Left cursor move in presence of selected text now moves from left end
***************
*** 69,80 ****
  
  - Add the ability to restart the subprocess interpreter from the shell window;
!   add an associated menu entry "Shell/Restart".  Update help.
  
  - Upon a restart, annotate the shell window with a "restart boundary".  Add a
!   shell window menu "Shell/View Restart" and hotkey to jump to the most recent
!   restart boundary.
  
! - Change the shell window menu "Debug" to "Shell"; change "Settings" to
!   "Options".
  
  - Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
--- 88,99 ----
  
  - Add the ability to restart the subprocess interpreter from the shell window;
!   add an associated menu entry "Shell/Restart" with binding Control-F6.  Update
!   IDLE help.
  
  - Upon a restart, annotate the shell window with a "restart boundary".  Add a
!   shell window menu "Shell/View Restart" with binding F6 to jump to the most
!   recent restart boundary.
  
! - Add Shell menu to Python Shell; change "Settings" to "Options".
  
  - Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
***************
*** 91,97 ****
    + Can't kill a tight loop in the Windows version: Insert a
      ``print "*",`` in an outer loop or use the Task Manager to kill.
!   + Printing under Linux may be problematic.
!   + The debugger is pretty slow.
!   + RPC stack levels are not being pruned from debugger tracebacks.
  
  
--- 110,117 ----
    + Can't kill a tight loop in the Windows version: Insert a
      ``print "*",`` in an outer loop or use the Task Manager to kill.
!   + Typing two Control-C in close succession when the subprocess is busy can
!     cause IDLE to lose communication with the subprocess.  Please type one
!     only and wait for the exception to complete.
!   + Printing under some versions of Linux may be problematic.
  
  

Index: idlever.py
===================================================================
RCS file: /cvsroot/idlefork/idle/idlever.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** idlever.py	1 Jan 2003 01:14:13 -0000	1.8
--- idlever.py	27 Jan 2003 02:40:20 -0000	1.9
***************
*** 1 ****
! IDLE_VERSION = "0.9a1"
--- 1 ----
! IDLE_VERSION = "0.9a2"