(self, text)
| 16951 | return None |
| 16952 | |
| 16953 | def _extract_emails(self, text): |
| 16954 | if not text: |
| 16955 | return [] |
| 16956 | return sorted(set(re.findall(r"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}", text, flags=re.I))) |
| 16957 | |
| 16958 | def _extract_phones(self, text): |
| 16959 | if not text: |
no outgoing calls
no test coverage detected