unix/main: Enter REPL when inspect active, even with stdin redirected.
This is how CPython behaves.
This commit is contained in:
parent
cd9a8c1742
commit
dd8db974d7
|
@ -657,7 +657,7 @@ MP_NOINLINE int main_(int argc, char **argv) {
|
||||||
inspect = true;
|
inspect = true;
|
||||||
}
|
}
|
||||||
if (ret == NOTHING_EXECUTED || inspect) {
|
if (ret == NOTHING_EXECUTED || inspect) {
|
||||||
if (isatty(0)) {
|
if (isatty(0) || inspect) {
|
||||||
prompt_read_history();
|
prompt_read_history();
|
||||||
ret = do_repl();
|
ret = do_repl();
|
||||||
prompt_write_history();
|
prompt_write_history();
|
||||||
|
|
Loading…
Reference in New Issue