Files
giovannibajo 03bcf72d90 Merge Python 2.6 for Windows support (py26win branch)
git-svn-id: http://svn.pyinstaller.org/trunk@844 8dd32b29-ccff-0310-8a9a-9233e24343b1
2010-05-21 00:07:21 +00:00

19 lines
308 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from PyQt4 import Qt
def main():
app = Qt.QApplication(sys.argv)
label = Qt.QLabel("Hello World from PyQt4", None)
label.setWindowTitle("Hello World from PyQt4")
label.show()
app.exec_()
if __name__ == "__main__":
main()