(text, token, globals, locals)
| 458 | |
| 459 | |
| 460 | def get_completions(text, token, globals, locals): |
| 461 | interpreterInterface = get_interpreter() |
| 462 | |
| 463 | interpreterInterface.interpreter.update(globals, locals) |
| 464 | |
| 465 | return interpreterInterface.getCompletions(text, token) |
| 466 | |
| 467 | |
| 468 | # =============================================================================== |
nothing calls this directly
no test coverage detected