In Python, is there a way to display thread/process ID while debugging using PDB?
I was looking at https://docs.python.org/2/library/pdb.html but could not find anything related to it?
(pdb) import os,threading; os.getpid(), threading.current_thread().ident
If you need to do this often, it would be convenient to add an alias in your .pdbrc
file:
alias tid import os,threading;; p os.getpid(), threading.current_thread().ident
来源:https://stackoverflow.com/questions/39259805/how-do-i-display-thread-process-id-in-python-pdb