Ejemplo n.º 1
0
 def func():
     for a in range(1):
         for b in range(1):
             ckpt = save_restore.save_jump()
     return ckpt
Ejemplo n.º 2
0
 def func2(a, b, c, d, e):
     return save_restore.save_jump()
Ejemplo n.º 3
0
 def func4():
     return save_restore.save_jump()
Ejemplo n.º 4
0
 def func():
     a = 2
     return save_restore.save_jump()
Ejemplo n.º 5
0
def foo(a, b, c, d):
    print("foo in", a, b, c, d)
    r = save_restore.save_jump()
    print("foo out", a, b, c, d)
    return r