Returns the underlying string object. Returns: str
(self)
| 239 | return hash((self.s, self.safe, self.inline)) |
| 240 | |
| 241 | def unwrap(self): |
| 242 | """ |
| 243 | Returns the underlying string object. |
| 244 | |
| 245 | Returns: |
| 246 | str |
| 247 | """ |
| 248 | return self.s |
| 249 | |
| 250 | DATA_LOADER_NAME = String("data_loader", safe=True, inline=True) |
| 251 |
no outgoing calls