This module provides functions to run Daemon process.
Bases: object
This class implements a Daemon sub-process.
List of fifos to be created.
Makes a file descriptor non-blocking.
When a non-blocking file is read, the read does not wait for end-of-file. Instead, the read can return just as soon as there is nothing left to read. This might be because a buffer is empty.
See Python Cookbook, Recipe 6.6.