mitogen/tests/data/self_contained_program.py

16 lines
207 B
Python
Raw Normal View History

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