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