From 129e91aa77b22db1637e9f6db9e081a4a0c9f2a1 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 14 Feb 1997 21:00:50 +0000 Subject: Add parentheses around && within || as gcc -Wall advises. --- Modules/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/main.c b/Modules/main.c index 19c3e1d..427b19b 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -205,7 +205,7 @@ main(argc, argv) } if (Py_VerboseFlag || - command == NULL && filename == NULL && stdin_is_interactive) + (command == NULL && filename == NULL && stdin_is_interactive)) fprintf(stderr, "Python %s\n%s\n", Py_GetVersion(), Py_GetCopyright()); -- cgit v0.12