#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

from PyQt4.QtCore import *
from PyQt4.QtGui import *

class Test(QDialog):
	def __init__(self, parent = None):
		QDialog.__init__(self,parent)
		self.test = QDateEdit(self)
		self.test.setDisplayFormat("dddd dd/MM")


if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    test = Test()
    test.show()
    sys.exit(app.exec_())