summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-08-05 06:38:19 (GMT)
committerNed Deily <nad@acm.org>2011-08-05 06:38:19 (GMT)
commit2ef905d449f6cde2c3fd4e0288a5808bc28f0aba (patch)
tree1dc40d1edfc94c2f9fff74bd2c4ee18aba41748f /Misc
parent252365bab8814b80a747a1a23e32414c1713c35e (diff)
parente5cad23a92c88440e739589430c0b22d41a44621 (diff)
downloadcpython-2ef905d449f6cde2c3fd4e0288a5808bc28f0aba.zip
cpython-2ef905d449f6cde2c3fd4e0288a5808bc28f0aba.tar.gz
cpython-2ef905d449f6cde2c3fd4e0288a5808bc28f0aba.tar.bz2
Issue #12540: Prevent zombie IDLE processes on Windows due to changes
in os.kill(). Original patch by Eli Bendersky.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 22ed1c0..d257632 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -249,6 +249,9 @@ Core and Builtins
Library
-------
+- Issue #12540: Prevent zombie IDLE processes on Windows due to changes
+ in os.kill().
+
- Issue #12683: urlparse updated to include svn as schemes that uses relative
paths. (svn from 1.5 onwards support relative path).