[Python-checkins] CVS: python/dist/src/Tools/idle NEWS.txt,1.5,1.6

Guido van Rossum guido@cnri.reston.va.us
Tue, 15 Feb 2000 13:20:31 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Tools/idle
In directory eric:/projects/python/develop/guido/src/Tools/idle

Modified Files:
	NEWS.txt 
Log Message:
Added some clarifications.


Index: NEWS.txt
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Tools/idle/NEWS.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** NEWS.txt	2000/02/15 18:08:19	1.5
--- NEWS.txt	2000/02/15 18:20:28	1.6
***************
*** 24,28 ****
  
  - Call tip window pops up when you type the name of a known function
! followed by an open parenthesis (MH)
  
  - Comment out region now inserts ## to make it stand out more (TP)
--- 24,29 ----
  
  - Call tip window pops up when you type the name of a known function
! followed by an open parenthesis.  Hit ESC or click elsewhere in the
! window to close the tip window (MH)
  
  - Comment out region now inserts ## to make it stand out more (TP)
***************
*** 31,37 ****
  familiar to Windows users
  
! - Reworked script running commands to be more intuitive
! 
! - XXX much more?!
  
  New in IDLE 0.4 (4/7/99)
--- 32,41 ----
  familiar to Windows users
  
! - Reworked script running commands to be more intuitive: I/O now
! always goes to the *Python Shell* window, and raw_input() works
! correctly.  You use F5 to import/reload a module: this adds the module
! name to the __main__ namespace.  You use Control-F5 to run a script:
! this runs the script *in* the __main__ namespace.  The latter also
! sets sys.argv[] to the script name
  
  New in IDLE 0.4 (4/7/99)