Ejemplo n.º 1
0
 def __init__(self):
     QValidator.__init__(self)
     self.parser = DurationParser()
Ejemplo n.º 2
0
    def __init__(self, base_date=None, enforce_future=False):
        QValidator.__init__(self)

        self.parser = FutureDateParser(base_date)
        self.enforce_future = enforce_future
Ejemplo n.º 3
0
 def __init__(self):
     QValidator.__init__(self)
     self.nullable = True
Ejemplo n.º 4
0
 def __init__(self, mini, maxi):
     QValidator.__init__(self)
     self.mini = mini
     self.maxi = maxi
Ejemplo n.º 5
0
 def __init__(self):
     QValidator.__init__(self)
     self._validator = None
Ejemplo n.º 6
0
	def __init(self):
		QValidator.__init__(self)