From: Leandro Lucarella Date: Thu, 22 Feb 2007 03:25:44 +0000 (+0000) Subject: Arreglar TupleCol. X-Git-Tag: pre-merge~128 X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/commitdiff_plain/7c2f57d80a29bc2633f0f6ab9b6f1c4df31342cd?ds=sidebyside;hp=17a4d00c92266b9deb9b5654ff8b9ff906acd997 Arreglar TupleCol. Faltaban propagar algunos parámetros de TupleCol y se elimina código superfluo. --- diff --git a/sercom/model.py b/sercom/model.py index 56e9853..06c132d 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -40,13 +40,9 @@ class TupleValidator(PickleValidator): 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 @@ -384,7 +380,7 @@ class CasoDePrueba(SQLObject): #{{{ 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):