All pastes #2105906 Raw Edit

Something

public python v1 · immutable
#2105906 ·published 2012-01-25 04:21 UTC
rendered paste body
from 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_())