コード例 #1
0
 def func():
     for a in range(1):
         for b in range(1):
             ckpt = save_restore.save_jump()
     return ckpt
コード例 #2
0
 def func2(a, b, c, d, e):
     return save_restore.save_jump()
コード例 #3
0
 def func4():
     return save_restore.save_jump()
コード例 #4
0
 def func():
     a = 2
     return save_restore.save_jump()
コード例 #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