I would like to ask a question for which my extensive web search suggests that the answer is no, but maybe I missed something ...
Are there levels of Python abstraction on top of Unix and Windows signal processing (for unresolved independent processes) and user management (getting user and group entries, comparing them, etc.)?
Yes, I know that Windows and Unix are significantly different from each other in both aspects, but OS-specific methods perform similar tasks. Thus, it would be nice to create an abstraction layer.
The closest I found to what I'm looking for, at least to control the subprocess (and to some extent to โsignalโ these subprocesses), is python multiprocessing, i.e. http://docs.python.org/dev /library/multiprocessing.html is the abstraction I am looking for, but it doesnโt quite do what I want.
Any pointers going in that direction?
The module that controls signal processing / user management in Windows looks like Unix or vice versa, it will also be ok.
source share