예제 #1
0
파일: test_pdb.py 프로젝트: megies/pdb
 def fn():
     x = 1
     pdb.disable()
     set_trace()
     x = 2
     pdb.enable()
     set_trace()
     return x
예제 #2
0
파일: test_pdb.py 프로젝트: holycrepe/pdbpp
 def fn():
     x = 1
     pdb.disable()
     set_trace()
     x = 2
     pdb.enable()
     set_trace()
     return x