Internal tag stripping utility used by strip_tags.
(value)
| 203 | |
| 204 | |
| 205 | def _strip_once(value): |
| 206 | """ |
| 207 | Internal tag stripping utility used by strip_tags. |
| 208 | """ |
| 209 | s = MLStripper() |
| 210 | s.feed(value) |
| 211 | s.close() |
| 212 | return s.get_data() |
| 213 | |
| 214 | |
| 215 | @keep_lazy_text |
no test coverage detected