Shortcut for the common case of a lazy callable that returns str.
(text)
| 202 | |
| 203 | |
| 204 | def lazystr(text): |
| 205 | class="st">""" |
| 206 | Shortcut for the common case of a lazy callable that returns str. |
| 207 | class="st">""" |
| 208 | return lazy(str, str)(text) |
| 209 | |
| 210 | |
| 211 | def keep_lazy(*resultclasses): |