1 """Python Daemon Management -- Miscellaneous utilities
3 This module contains various functions that may be useful to call from
7 import sys, traceback, threading
10 "Returns a dict of currently known threads, mapped to their respective frames."
11 tt = {th.ident: th for th in threading.enumerate()}
12 return {tt.get(key, key): val for key, val in sys._current_frames().items()}
15 "Returns the value of threads() with each frame expanded to a backtrace."
16 return {th: traceback.extract_stack(frame) for th, frame in threads().items()}