STINNER Victor added the comment:

os.pipe() creates non-inheritable pipes on Windows, whereas it creates 
inheritable pipes on UNIX. IMO the reason is an implementation artifact: 
os.pipe() calls CreatePipe() on Windows (native API), whereas it calls pipe() 
on UNIX (POSIX API). The call to CreatePipe() was added in Python in 1994, 
before the introduction of pipe() in the POSIX API in Windows 98.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue4708>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to