]> granicus.if.org Git - python/commitdiff
Add parentheses around && within || as gcc -Wall advises.
authorGuido van Rossum <guido@python.org>
Fri, 14 Feb 1997 21:00:50 +0000 (21:00 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 14 Feb 1997 21:00:50 +0000 (21:00 +0000)
Modules/main.c

index 19c3e1dc786ca76c14594a83ce2ad53218318367..427b19b61f18ee133ce40ac457bad746946d2e40 100644 (file)
@@ -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());