[Python-checkins] python/dist/src/Modules posixmodule.c,2.242,2.243

Mark Hammond mhammond@skippinet.com.au
Mon, 15 Jul 2002 10:23:36 +1000


> [mhammond@users.sourceforge.net]
> > Modified Files:
> > 	posixmodule.c
> > Log Message:
> > 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.
>
> Do you consider this to be a bugfix candidate?

Sorry - I meant to add this to the checkin message.  This could be
considered a low-priority bug fix - but as the behaviour has been "broken"
ever since popen() appeared on Windows, and no one else has reported it, I
don't think anyone would notice if it never made earlier versions.

Mark.