(self, cursor_offset: int, line: str)
| 528 | return {name for name in MAGIC_METHODS if name.startswith(r.word)} |
| 529 | |
| 530 | def locate(self, cursor_offset: int, line: str) -> LinePart | None: |
| 531 | return lineparts.current_method_definition_name(cursor_offset, line) |
| 532 | |
| 533 | |
| 534 | class GlobalCompletion(BaseCompletionType): |