os.pipe()
Create a pipe. Return a pair of file descriptors (r, w)
usable for reading and writing, respectively. The new file descriptor is non-inheritable.
Availability: Unix, Windows.
Changed in version 3.4: The new file descriptors are now non-inheritable.
Please login to continue.