summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-09 05:58:11 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-09 05:58:11 (GMT)
commit72c2c062d71c499863ff6e260525faaea4a53dbb (patch)
treea93e5551c95aff7b117588fa91465a9b15558d45 /Python/sysmodule.c
parent8ff212034e3386916f1a35ff3b0c955aa1ea2b4a (diff)
downloadcpython-72c2c062d71c499863ff6e260525faaea4a53dbb.zip
cpython-72c2c062d71c499863ff6e260525faaea4a53dbb.tar.gz
cpython-72c2c062d71c499863ff6e260525faaea4a53dbb.tar.bz2
Try to be a bit more consistent on all platforms:
python . python < . both print a message, return non-zero and do not core dump.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 6eadd06..dfa6ac8 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1037,7 +1037,10 @@ _PySys_Init(void)
struct stat sb;
if (fstat(fileno(stdin), &sb) == 0 &&
S_ISDIR(sb.st_mode)) {
- Py_FatalError("<stdin> is a directory");
+ /* There's nothing more we can do. */
+ /* Py_FatalError() will core dump, so just exit. */
+ PySys_WriteStderr("Python error: <stdin> is a directory, cannot continue\n");
+ exit(EXIT_FAILURE);
}
}