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.
mitogen/tests/data/self_contained_program.py

23 lines
384 B
Python

7 years ago
"""
I am a self-contained program!
"""
import mitogen.master
def repr_stuff():
return repr([__name__, 50])
def main():
broker = mitogen.master.Broker()
try:
context = mitogen.master.connect(broker)
print context.call(repr_stuff)
finally:
broker.shutdown()
broker.join()
if __name__ == '__main__' and mitogen.is_master:
7 years ago
main()