(self, text)
| 243 | return False |
| 244 | |
| 245 | def _is_number(self, text): |
| 246 | try: |
| 247 | float(text) |
| 248 | return True |
| 249 | except ValueError: |
| 250 | return False |
| 251 | |
| 252 | def _remove_articles(self, text): |
| 253 | return _ARTICLES.sub(" ", text) |
no outgoing calls
no test coverage detected