mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Add parentheses around && within || as gcc -Wall advises.
This commit is contained in:
parent
2dc466169e
commit
129e91aa77
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue