summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2002-08-10 06:26:31 (GMT)
committerMark Hammond <mhammond@skippinet.com.au>2002-08-10 06:26:31 (GMT)
commit8f3afc7cd30eacd95342f8da5c7ed038e64d41ea (patch)
tree9ca5b3a55135d98e942a155c78927f77c8d5b9a2 /Misc/NEWS
parent40af889081938c1fea83cba0a9cbdb35e299119d (diff)
downloadcpython-8f3afc7cd30eacd95342f8da5c7ed038e64d41ea.zip
cpython-8f3afc7cd30eacd95342f8da5c7ed038e64d41ea.tar.gz
cpython-8f3afc7cd30eacd95342f8da5c7ed038e64d41ea.tar.bz2
Clarify that the interruptable popen fixes aren't used under Win9x.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 4 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 11e5f0a..e12120d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,9 +63,10 @@ Core and builtins
other platforms. KeyboardInterrupt can now reliably be caught,
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]
+ 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
a string. Formerly, strings would be returned most of the time,