(text, body, offset)
| 89 | |
| 90 | |
| 91 | def _adjust_completion_text_based_on_context(text, body, offset): |
| 92 | if text.endswith('=') and len(body) > offset and body[offset] == '=': |
| 93 | return text[:-1] |
| 94 | else: |
| 95 | return text |
| 96 | |
| 97 | |
| 98 | class IPythonPTCompleter(Completer): |
no outgoing calls
searching dependent graphs…