Import PySide ImportErrors raised within this function are non-recoverable
()
| 234 | |
| 235 | |
| 236 | def import_pyside(): |
| 237 | """ |
| 238 | Import PySide |
| 239 | |
| 240 | ImportErrors raised within this function are non-recoverable |
| 241 | """ |
| 242 | from PySide import QtGui, QtCore, QtSvg |
| 243 | return QtCore, QtGui, QtSvg, QT_API_PYSIDE |
| 244 | |
| 245 | def import_pyside2(): |
| 246 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected