mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
_Py_GetObjects(): GCC suggests to add () around && within || for some
code only compiled in debug mode, and I dutifully comply.
This commit is contained in:
parent
0765976cc4
commit
3c29602d74
1 changed files with 1 additions and 1 deletions
|
@ -1410,7 +1410,7 @@ _Py_GetObjects(PyObject *self, PyObject *args)
|
|||
return NULL;
|
||||
for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
|
||||
while (op == self || op == args || op == res || op == t ||
|
||||
t != NULL && op->ob_type != (PyTypeObject *) t) {
|
||||
(t != NULL && op->ob_type != (PyTypeObject *) t)) {
|
||||
op = op->_ob_next;
|
||||
if (op == &refchain)
|
||||
return res;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue