(docstring: str)
| 18 | |
| 19 | |
| 20 | def tokenize_docstring(docstring: str) -> List[str]: |
| 21 | return [t for t in DOCSTRING_REGEX_TOKENIZER.findall(str(docstring)) if t is not None and len(t) > 0] |
| 22 | |
| 23 | |
| 24 | def tokenize_code(node, blob: str, nodes_to_exclude: Optional[Set]=None) -> List: |
no outgoing calls
no test coverage detected