This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lemburg
Recipients lemburg, vstinner
Date 2011-03-02.17:45:55
SpamBayes Score 3.491472e-08
Marked as misclassified No
Message-id <4D6E8252.5070702@egenix.com>
In-reply-to <1299086966.45.0.602666513721.issue11377@psf.upfronthosting.co.za>
Content
STINNER Victor wrote:
> 
> New submission from STINNER Victor <victor.stinner@haypocalc.com>:
> 
> Extract of the documentation:
> ----
> 15.14.3.1. Win95/98 specific
> 
> platform.popen(cmd, mode='r', bufsize=None)
> 
> Portable popen() interface. Find a working popen implementation preferring win32pipe.popen(). On Windows NT, win32pipe.popen() should work; on Windows 9x it hangs due to bugs in the MS C library.
> ----
> 
> Python 3 doesn't support Windows 9x/Me anymore: we should deprecate it, or maybe directly remove it.
> 
> subprocess.Popen() is a better alternative: it supports Unicode, it handles EINTR, etc.

Does it prevent a shell window from opening on Windows ?

Does subprocess.Popen() use the system's PATH for finding the
executable ?

Since it's a documented API, we could replace it with an implementation
that uses subprocess.Popen(), but not remove it.
History
Date User Action Args
2011-03-02 17:45:57lemburgsetrecipients: + lemburg, vstinner
2011-03-02 17:45:55lemburglinkissue11377 messages
2011-03-02 17:45:55lemburgcreate