• Home
  • Raw
  • Download

Lines Matching refs:inheritable

824    :ref:`non-inheritable <fd_inheritance>`.
827 2: stderr), the new file descriptor is :ref:`inheritable
831 The new file descriptor is now non-inheritable.
834 .. function:: dup2(fd, fd2, inheritable=True)
837 necessary. Return *fd2*. The new file descriptor is :ref:`inheritable
838 <fd_inheritance>` by default or non-inheritable if *inheritable*
842 Add the optional *inheritable* parameter.
1020 The new file descriptor is :ref:`non-inheritable <fd_inheritance>`.
1033 The new file descriptor is now non-inheritable.
1130 descriptors are :ref:`non-inheritable <fd_inheritance>`. For a (slightly) more
1136 The new file descriptors are now non-inheritable.
1143 :ref:`non-inheritable <fd_inheritance>`.
1148 The new file descriptors are now non-inheritable.
1590 A file descriptor has an "inheritable" flag which indicates if the file descriptor
1592 created by Python are non-inheritable by default.
1594 On UNIX, non-inheritable file descriptors are closed in child processes at the
1597 On Windows, non-inheritable handles and file descriptors are closed in child
1600 all inheritable handles and all inheritable file descriptors are inherited.
1602 streams are closed, and inheritable handles are only inherited if the
1607 Get the "inheritable" flag of the specified file descriptor (a boolean).
1609 .. function:: set_inheritable(fd, inheritable)
1611 Set the "inheritable" flag of the specified file descriptor.
1615 Get the "inheritable" flag of the specified handle (a boolean).
1619 .. function:: set_handle_inheritable(handle, inheritable)
1621 Set the "inheritable" flag of the specified handle.
3284 descriptor is :ref:`non-inheritable <fd_inheritance>`.
3330 new file descriptor is :ref:`non-inheritable <fd_inheritance>`.