Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
autopep8 --max-line-length 120 -i --aggressive `find -name '*.py'`
[simgrid.git] / examples / python / actor-lifetime / actor-lifetime.py
index f408dc1..7c9f569 100644 (file)
@@ -14,7 +14,8 @@ class Sleeper:
     """This actor just sleeps until termination"""
 
     def __init__(self, *args):
-        this_actor.on_exit(lambda: print("BAAA")) # sys.exit(1); simgrid.info("Exiting now (done sleeping or got killed)."))
+        # sys.exit(1); simgrid.info("Exiting now (done sleeping or got killed)."))
+        this_actor.on_exit(lambda: print("BAAA"))
 
     def __call__(self):
         this_actor.info("Hello! I go to sleep.")