這篇文章主要介紹python中pdb有什么調(diào)試命令,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
壺關(guān)網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),壺關(guān)網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為壺關(guān)近千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的壺關(guān)做網(wǎng)站的公司定做!
1、next執(zhí)行下一條語句,如果本句是函數(shù)調(diào)用,則執(zhí)行函數(shù),接著執(zhí)行當前執(zhí)行語句的下一條。
def stop_here(self, frame): ... # 如果frame還沒跳出stopframe,永遠返回true if frame is self.stopframe: if self.stoplineno == -1: return False return frame.f_lineno >= self.stoplineno # 如果frame跳出了stopframe,進入下一個frame,則執(zhí)行不會中斷,一直到跳出到stopframe # 還有一種情況,如果在return事件中斷執(zhí)行了next,下一次跟蹤在上一級frame中,此時上一級frame能跟蹤到botframe,中斷 while frame is not None and frame is not self.stopframe: if frame is self.botframe: return True frame = frame.f_back return False
2、step執(zhí)行下一條命令,如果本句是函數(shù)調(diào)用,則s會執(zhí)行到函數(shù)的第一句。
def stop_here(self, frame): ... # stopframe為None if frame is self.stopframe: ... # 當前frame一定會追溯到botframe,返回true while frame is not None and frame is not self.stopframe: if frame is self.botframe: return True frame = frame.f_back return False
3、return執(zhí)行當前運行函數(shù)到結(jié)束。
def stop_here(self, frame): ... # 如果當前幀代碼順序執(zhí)行,下一個frame的lineno==stoplineno # 如果執(zhí)行到for循環(huán)的最后一行,下一個frame(for循環(huán)第一行)的lineno= self.stoplineno # 如果在非botframe中,會先追溯到stopframe,返回false,同next while frame is not None and frame is not self.stopframe: if frame is self.botframe: return True frame = frame.f_back return False
以上是“python中pdb有什么調(diào)試命令”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!