mitogen/tests/data/self_contained_program.py

19 lines
313 B
Python
Raw Normal View History

2017-09-15 06:24:41 +00:00
"""
I am a self-contained program!
"""
import mitogen.master
def repr_stuff():
return repr([__name__, 50])
2017-09-17 15:03:43 +00:00
def main(router):
context = router.local()
print context.call(repr_stuff)
2017-09-15 06:24:41 +00:00
if __name__ == '__main__' and mitogen.is_master:
2017-09-17 15:03:43 +00:00
import mitogen.utils
mitogen.utils.run_with_router(main)