Ticket #6021: recursion.diff

File recursion.diff, 468 bytes (added by Jan Rademaker <j.rademaker@…>, 17 years ago)
  • django/utils/safestring.py

     
    4141        else:
    4242            return super(SafeString, self).__add__(rhs)
    4343
    44     def __str__(self):
    45         return self
    46 
    4744    def _proxy_method(self, *args, **kwargs):
    4845        """
    4946        Wrap a call to a normal unicode method up so that we return safe
Back to Top