Python 调试:pdb

1. 见下面红色字体

2. 其他同gdb相同

#!/usr/local/bin/python

import test
_DEBUG = True 

def main():
    if _DEBUG == True: 
        import pdb 
        pdb.set_trace() 
    
    test.Go()

main()

>.\main.py
(Pdb)

posted @ 2013-03-30 18:36  Me.thinking  阅读(144)  评论(0编辑  收藏  举报