I've been trying to debug a program that uses PySide6, but Pyscripter would not interrupt execution at any of the breakpoints. In the end I found that just importing a Pyside6 module would impede program interruption thereafter. For example if you put a breakpoint on each of the following lines:
import math
import PySide6.QtWidgets
pass
execution will be interrupted on the first two, but not on the third.
This also occurs in Idle, and I presume it has something to do with the internal workings of PySide6. If this is true, is there any way that PySide6 compatibility can be introduced to PyScripter in the same way as for Tk and Wx?
Thanks very much
Piero