You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
313 B
Python
19 lines
313 B
Python
"""
|
|
I am a self-contained program!
|
|
"""
|
|
|
|
import mitogen.master
|
|
|
|
|
|
def repr_stuff():
|
|
return repr([__name__, 50])
|
|
|
|
|
|
def main(router):
|
|
context = router.local()
|
|
print context.call(repr_stuff)
|
|
|
|
if __name__ == '__main__' and mitogen.is_master:
|
|
import mitogen.utils
|
|
mitogen.utils.run_with_router(main)
|