| 372 | this->Prompted = false; |
| 373 | this->Internals->begin(); |
| 374 | Q_FOREACH (QString line, lines) |
| 375 | { |
| 376 | bool isMultilineStatement = this->Internals->interpreter()->Push(line.toUtf8().data()); |
| 377 | this->Prompt = isMultilineStatement ? pqPythonShell::PS2() : pqPythonShell::PS1(); |
| 378 | } |
| 379 | this->Internals->end(); |
| 380 | this->prompt(); |
| 381 | CLEAR_UNDO_STACK(); |
nothing calls this directly
no test coverage detected