docstring of __str__ in Expression

This commit is contained in:
Lafrite 2014-12-21 18:26:05 +01:00
parent a4a58f05a0
commit cd6e8c5ca3
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class Expression(object):
def __str__(self): def __str__(self):
""" """
Overload str Overload str
If you want to changer render set Expression.RENDER If you want to changer render use Expression.set_render(...)
""" """
return self.STR_RENDER(self.postfix_tokens) return self.STR_RENDER(self.postfix_tokens)