如何在Python PDB中显示线程/进程ID?

时间:2016-08-31 22:13:58

标签: python pdb

在Python中,有没有办法在使用PDB进行调试时显示线程/进程ID?

我在查看https://docs.python.org/2/library/pdb.html但找不到与之相关的任何内容?

1 个答案:

答案 0 :(得分:5)

(pdb) import os,threading; os.getpid(), threading.current_thread().ident

如果您经常需要这样做,在.pdbrc文件中添加别名会很方便:

alias tid import os,threading;; p os.getpid(), threading.current_thread().ident