(text, body, offset)
| 75 | |
| 76 | |
| 77 | def _adjust_completion_text_based_on_context(text, body, offset): |
| 78 | if text.endswith('=') and len(body) > offset and body[offset] == '=': |
| 79 | return text[:-1] |
| 80 | else: |
| 81 | return text |
| 82 | |
| 83 | |
| 84 | class IPythonPTCompleter(Completer): |
no outgoing calls