master: Add minimal docstring to worker_impl [nfc]

pull/1179/head
David Nadlinger 2018-03-08 21:50:48 +00:00 committed by Sébastien Bourdeauducq
parent 64b9a377da
commit e3cfbfed06
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,11 @@
"""Worker process implementation.
This module contains the worker process main() function and the glue code
necessary to connect the global artefacts used from experiment code (scheduler,
device database, etc.) to their actual implementation in the parent master
process via IPC.
"""
import sys
import time
import os