(self, other)
| 76 | return self |
| 77 | |
| 78 | def __add__(self, other): |
| 79 | if isinstance(other, string_types) or hasattr(other, '__html__'): |
| 80 | return self.__class__(super(Markup, self).__add__(self.escape(other))) |
| 81 | return NotImplemented |
| 82 | |
| 83 | def __radd__(self, other): |
| 84 | if hasattr(other, '__html__') or isinstance(other, string_types): |