Return the html representation of a string for interoperability. This allows other template engines to understand Django's SafeData.
(self)
| 14 | __slots__ = () |
| 15 | |
| 16 | def __html__(self): |
| 17 | """ |
| 18 | Return the html representation of a string for interoperability. |
| 19 | |
| 20 | This allows other template engines to understand Django's SafeData. |
| 21 | """ |
| 22 | return self |
| 23 | |
| 24 | |
| 25 | class SafeString(str, SafeData): |
no outgoing calls
no test coverage detected