Commit 129e91aa authored by Guido van Rossum's avatar Guido van Rossum

Add parentheses around && within || as gcc -Wall advises.

parent 2dc46616
...@@ -205,7 +205,7 @@ main(argc, argv) ...@@ -205,7 +205,7 @@ main(argc, argv)
} }
if (Py_VerboseFlag || if (Py_VerboseFlag ||
command == NULL && filename == NULL && stdin_is_interactive) (command == NULL && filename == NULL && stdin_is_interactive))
fprintf(stderr, "Python %s\n%s\n", fprintf(stderr, "Python %s\n%s\n",
Py_GetVersion(), Py_GetCopyright()); Py_GetVersion(), Py_GetCopyright());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment