summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-10-03 00:54:56 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-10-03 00:54:56 (GMT)
commit11bd11922657f582ee05f1d3cefe32c3a9e51cb7 (patch)
tree4dfa13e8f81174dbd90bf28a44a5cc1b0c611685 /Modules
parentd157b1d237776f0ee044b97b19b1d803a353f096 (diff)
downloadcpython-11bd11922657f582ee05f1d3cefe32c3a9e51cb7.zip
cpython-11bd11922657f582ee05f1d3cefe32c3a9e51cb7.tar.gz
cpython-11bd11922657f582ee05f1d3cefe32c3a9e51cb7.tar.bz2
SF bug #887946, segfault if redirecting directory
Also provide a warning if a directory is passed on the command line. Add minimal command line test. Will backport.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 1005b94..d511e59 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -359,6 +359,14 @@ Py_Main(int argc, char **argv)
}
}
}
+ {
+ /* XXX: does this work on Win/Win64? (see posix_fstat) */
+ struct stat sb;
+ if (fstat(fileno(fp), &sb) == 0 &&
+ S_ISDIR(sb.st_mode)) {
+ fprintf(stderr, "%s: warning '%s' is a directory\n", argv[0], filename);
+ }
+ }
}
}