From 4d4dfb7a2b3bf4ed49a9f72ae8b802280b4e6154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Thu, 19 Aug 2004 11:07:49 +0000 Subject: [PATCH] Patch #1011822: Display errno/strerror for inaccessible files. --- Modules/main.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Modules/main.c b/Modules/main.c index fc5773c07fb..bc543a4cac8 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -302,8 +302,13 @@ Py_Main(int argc, char **argv) #endif if (filename != NULL) { if ((fp = fopen(filename, "r")) == NULL) { - fprintf(stderr, "%s: can't open file '%s'\n", - argv[0], filename); +#ifdef HAVE_STRERROR + fprintf(stderr, "%s: can't open file '%s': [Errno %d] %s\n", + argv[0], filename, errno, strerror(errno)); +#else + fprintf(stderr, "%s: can't open file '%s': Errno %d\n", + argv[0], filename, errno); +#endif return 2; } else if (skipfirstline) {