[Python-checkins] python/dist/src/Misc NEWS,1.459,1.460

mhammond@users.sourceforge.net mhammond@users.sourceforge.net
Fri, 09 Aug 2002 23:26:34 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv2146

Modified Files:
	NEWS 
Log Message:
Clarify that the interruptable popen fixes aren't used under Win9x.

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.459
retrieving revision 1.460
diff -C2 -d -r1.459 -r1.460
*** NEWS	9 Aug 2002 17:17:07 -0000	1.459
--- NEWS	10 Aug 2002 06:26:31 -0000	1.460
***************
*** 64,70 ****
    and Ctrl+C at an interative prompt no longer terminates the
    process under NT/2k/XP (it never did under Win9x).  Ctrl+C will
!   interrupt time.sleep() in the main thread, and any child processes
!   created via the popen family are also interrupted (as generally
!   happens on for Linux/Unix). [SF bugs 231273, 439992 and 581232]
  
  - Slices and repetitions of buffer objects now consistently return
--- 64,71 ----
    and Ctrl+C at an interative prompt no longer terminates the
    process under NT/2k/XP (it never did under Win9x).  Ctrl+C will
!   interrupt time.sleep() in the main thread, and any child processes 
!   created via the popen family (on win2k; we can't make win9x work 
!   reliably) are also interrupted (as generally happens on for Linux/Unix.)
!   [SF bugs 231273, 439992 and 581232]
  
  - Slices and repetitions of buffer objects now consistently return