summaryrefslogtreecommitdiff
path: root/PC/w9xpopen.c
Commit message (Collapse)AuthorAgeFilesLines
* Try to fix a bunch of compiler warnings on Win64.Neal Norwitz2008-03-251-1/+1
|
* Fix all wrong instances of "it's".Georg Brandl2005-07-221-1/+1
|
* WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very fewTim Peters2002-07-141-1/+2
| | | | | | | MSDN sample programs use it, apparently in error. The correct name is WIN32_LEAN_AND_MEAN. After switching to the correct name, in two cases more was needed because the code actually relied on things that disappear when WIN32_LEAN_AND_MEAN is defined.
* Fix grammarNeal Norwitz2002-04-151-2/+2
|
* Fix bugs:Mark Hammond2002-04-031-4/+52
| | | | | | | | | | | | | | | 457466: popenx() argument mangling hangs python 226766: popen('python -c"...."') tends to hang Fixes argument quoting in w9xpopen.exe for Windows 9x. w9xpopen.exe also never attempts to display a MessageBox when not executed interactively. Added test_popen() test. This test currently just executes "python -c ..." as a child process, and checks that the expected arguments were all recieved correctly by the child process. This test succeeds for me on Win9x, win2k and Linux, and I hope it does for other popen supported platforms too :)
* Patch #101032, from David Bolen:Mark Hammond2000-08-141-2/+5
| | | | Ensure the "proxied" command's return code bubbles back up.
* - win95/98 helper for new os.popen codeFredrik Lundh2000-07-091-0/+60
this should be built as a console application (link with USER32.LIB), and installed in the same directory as the Python DLL.