Remove line separators, replacing them with spaces.
(text)
| 81 | |
| 82 | |
| 83 | def nolinesep(text): |
| 84 | """ |
| 85 | Remove line separators, replacing them with spaces. |
| 86 | """ |
| 87 | if not isinstance(text, str): |
| 88 | text = as_unicode(text) |
| 89 | return text.replace(CR, " ").replace(LF, " ") |
| 90 | |
| 91 | |
| 92 | def toascii(s, translit=False): |
nothing calls this directly
no test coverage detected