commit | e74c8f2879159367eded0933c9f89b9315f07df8 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Sat Apr 19 02:23:57 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Sat Apr 19 02:23:57 2008 +0000 |
tree | 21c5c11b8af5ae63fe405f07603f6186730c2c18 | |
parent | c873550737cf191a64ea81e9eb50ee7355c7aec7 [diff] [blame] |
Added kill, terminate and send_signal to subprocess.Popen The bits and pieces for the Windows side were already in place. The POSIX side is trivial (as usual) and uses os.kill().
diff --git a/Misc/NEWS b/Misc/NEWS index 6ae6e46..660651a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -18,6 +18,8 @@ Extensions Modules ------------------ +- Added kill, terminate and send_signal(sig) to subprocess.Popen. + - Added phase(z) -> phi, polar(z) -> r, phi and rect(r, phi) -> z to the cmath module.