summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Modules/main.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/Modules/main.c b/Modules/main.c
index b882ff9..ef18fe6 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -228,6 +228,16 @@ Py_Main(argc, argv)
PySys_SetArgv(argc-optind, argv+optind);
+ if ((inspect || (command == NULL && filename == NULL)) &&
+ isatty(fileno(stdin))) {
+ PyObject *v;
+ v = PyImport_ImportModule("readline");
+ if (v == NULL)
+ PyErr_Clear();
+ else
+ Py_DECREF(v);
+ }
+
if (command) {
sts = PyRun_SimpleString(command) != 0;
free(command);
@@ -243,14 +253,6 @@ Py_Main(argc, argv)
fclose(fp);
}
}
- if (isatty(fileno(stdin))) {
- PyObject *v;
- v = PyImport_ImportModule("readline");
- if (v == NULL)
- PyErr_Clear();
- else
- Py_DECREF(v);
- }
}
sts = PyRun_AnyFile(
fp,