You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
202 B
10 lines
202 B
5 years ago
|
def debug_trace():
|
||
|
"""
|
||
|
A wrapper for pdb that works with PyQt5.
|
||
|
"""
|
||
|
from PyQt5.QtCore import pyqtRemoveInputHook
|
||
|
|
||
|
from pdb import set_trace
|
||
|
pyqtRemoveInputHook()
|
||
|
set_trace()
|