I\'m finding it frustratingly hard to find a simple way to delete my selected QTreeWidgetItem.
QTreeWidgetItem
My patchwork method involves setting the tree\'s current sele
PyQt4 uses sip to generate the python bindings for Qt classes, so you can delete the C++ object explicitly through the sip python API:
import sip ... sip.delete(current)
The binding generator for PySide, shiboken, has a similar module.