(self, string)
| 85 | return result |
| 86 | |
| 87 | def replace_urls(self, string): |
| 88 | result = re.sub(self.url, '<url>', string) |
| 89 | result = ' '.join(re.split(' +|\n+', result)).strip() |
| 90 | return result |
| 91 | |
| 92 | |
| 93 | def remove_less_word(lines_str, word_st): |
nothing calls this directly
no outgoing calls
no test coverage detected