return super(TupleValidator, self).from_python(value, state)
class SOTupleCol(SOPickleCol):
-
- def __init__(self, **kw):
- super(SOTupleCol, self).__init__(**kw)
-
def createValidators(self):
- return [TupleValidator(name=self.name)] + \
- super(SOPickleCol, self).createValidators()
+ return [TupleValidator(name=self.name)] \
+ + super(SOPickleCol, self).createValidators()
class TupleCol(PickleCol):
baseClass = SOTupleCol
def __init__(self, enunciado=None, nombre=None, parametros=(),
retorno=None, tiempo_cpu=None, descripcion=None, **kargs):
- SQLObject.__init__(self, enunciadoID=enunciado.id, nombre=nombre,
- parametros=parametros, retorno=retorno, tiempo_cpu=tiempo_cpu,
- descripcion=descripcion, **kargs)
+ SQLObject.__init__(self, enunciadoID=enunciado and enunciado.id,
+ nombre=nombre, parametros=parametros, retorno=retorno,
+ tiempo_cpu=tiempo_cpu, descripcion=descripcion, **kargs)
def __repr__(self):
return 'CasoDePrueba(enunciado=%s, nombre=%s, parametros=%s, ' \
'retorno=%s, tiempo_cpu=%s, descripcion=%s)' \
- % (self.enunciado.shortrepr(), self.nombre, self.parametros,
+ % (srepr(self.enunciado), self.nombre, self.parametros,
self.retorno, self.tiempo_cpu, self.descripcion)
def shortrepr(self):