Exemplo n.º 1
0
 def __str__(self):
     return attr_string(self.__dict__)
Exemplo n.º 2
0
 def __str__(self):
     return attr_string(user=self.user,
                        date=self.date,
                        message=self.message)
Exemplo n.º 3
0
Arquivo: issue.py Projeto: sporsh/bite
 def __str__(self):
     return attr_string(title=self.title,
                        user=self.user,
                        date=self.date,
                        fields=self.fields)
Exemplo n.º 4
0
 def __repr__(self):
     return "%s(%s)" % (self.__class__.__name__, attr_string(**self.__dict__))