]> granicus.if.org Git - python/commit
Fix bug 231273 - [windows] os.popen doens't kill subprocess when interrupted
authorMark Hammond <mhammond@skippinet.com.au>
Sun, 14 Jul 2002 23:28:16 +0000 (23:28 +0000)
committerMark Hammond <mhammond@skippinet.com.au>
Sun, 14 Jul 2002 23:28:16 +0000 (23:28 +0000)
commit155adbdcbb18a8eb66826034bff391f3cb0059a6
tree5db1f0d8ed485a592d9daba04c97934347731a7d
parent2f10cb8fa5e67e262c009c9b1a2c99a788fd0ad7
Fix bug 231273 - [windows] os.popen doens't kill subprocess when interrupted

Don't pass CREATE_NEW_CONSOLE to CreateProcess(), meaning our child process is in the same "console group" and therefore interrupted by the same Ctrl+C that interrupts the parent.
Modules/posixmodule.c