PyCharm fails to debug Qt5 (PySide2) code - Error 'Shiboken.ObjectType' object is not iterable
问题 I have some experience with Python console applications and now trying to start with Qt for Python (Qt 5.12, PySide2). Actually I'm trying some basic tutorials to understand how it should work. So, I created very simple view.qml : import QtQuick 2.0 import QtQuick.Controls 2.13 ApplicationWindow { visible: true Button { id: button text: qsTr("ClickOnMe") } Connections { target: button onClicked: con.say_hello() } } and have following python code to work with it: from PySide2.QtCore import