A Voronoi Diagram viewer with an editable canvas.
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.
|
def debug_trace(): |
|
""" |
|
A wrapper for pdb that works with PyQt5. |
|
""" |
|
from PyQt5.QtCore import pyqtRemoveInputHook |
|
|
|
from pdb import set_trace |
|
pyqtRemoveInputHook() |
|
set_trace()
|
|
|