Something
public python v1 · immutablefrom PyQt4 import QtCore, QtGuiimport mathimport sysa=1b=2c=3d=4e=5f=6g=7def funcA(a, b): return 1def SetupScene(scene): return 1if __name__ == "__main__": app = QtGui.QApplication(sys.argv) scene = QtGui.QGraphicsScene() win = QtGui.QGraphicsView(scene) win.show() sys.exit(app.exec_())