本文整理匯總了Python中pdb.doc方法的典型用法代碼示例。如果您正苦於以下問題:Python pdb.doc方法的具體用法?Python pdb.doc怎麽用?Python pdb.doc使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pdb
的用法示例。
在下文中一共展示了pdb.doc方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: print_stack_entry
# 需要導入模塊: import pdb [as 別名]
# 或者: from pdb import doc [as 別名]
def print_stack_entry(self, frame_lineno, prompt_prefix=line_prefix):
frame, lineno = frame_lineno
if frame is self.curframe:
print >>self.stdout, '>',
else:
print >>self.stdout, ' ',
print >>self.stdout, self.format_stack_entry(frame_lineno,
prompt_prefix)
# Help methods (derived from pdb.doc)
示例2: help
# 需要導入模塊: import pdb [as 別名]
# 或者: from pdb import doc [as 別名]
def help():
for dirname in sys.path:
fullname = os.path.join(dirname, 'pdb.doc')
if os.path.exists(fullname):
sts = os.system('${PAGER-more} '+fullname)
if sts: print '*** Pager exit status:', sts
break
else:
print 'Sorry, can\'t find the help file "pdb.doc"',
print 'along the Python search path'