summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-14 21:00:50 (GMT)
committerGuido van Rossum <guido@python.org>1997-02-14 21:00:50 (GMT)
commit129e91aa77b22db1637e9f6db9e081a4a0c9f2a1 (patch)
treeba580e3ff5cfae64aa370be5d39903f60041e899 /Modules
parent2dc466169e6a0658744116b556cd5db90bde8bd9 (diff)
downloadcpython-129e91aa77b22db1637e9f6db9e081a4a0c9f2a1.zip
cpython-129e91aa77b22db1637e9f6db9e081a4a0c9f2a1.tar.gz
cpython-129e91aa77b22db1637e9f6db9e081a4a0c9f2a1.tar.bz2
Add parentheses around && within || as gcc -Wall advises.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/main.c2
1 files changed, 1 insertions, 1 deletions
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());