File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1399,7 +1399,7 @@ static PyObject *CPyDict_ItemsView(PyObject *dict) {
1399
1399
}
1400
1400
1401
1401
static PyObject * CPyDict_Keys (PyObject * dict ) {
1402
- if PyDict_CheckExact (dict ) {
1402
+ if ( PyDict_CheckExact (dict ) ) {
1403
1403
return PyDict_Keys (dict );
1404
1404
}
1405
1405
// Inline generic fallback logic to also return a list.
@@ -1418,7 +1418,7 @@ static PyObject *CPyDict_Keys(PyObject *dict) {
1418
1418
}
1419
1419
1420
1420
static PyObject * CPyDict_Values (PyObject * dict ) {
1421
- if PyDict_CheckExact (dict ) {
1421
+ if ( PyDict_CheckExact (dict ) ) {
1422
1422
return PyDict_Values (dict );
1423
1423
}
1424
1424
// Inline generic fallback logic to also return a list.
@@ -1437,7 +1437,7 @@ static PyObject *CPyDict_Values(PyObject *dict) {
1437
1437
}
1438
1438
1439
1439
static PyObject * CPyDict_Items (PyObject * dict ) {
1440
- if PyDict_CheckExact (dict ) {
1440
+ if ( PyDict_CheckExact (dict ) ) {
1441
1441
return PyDict_Items (dict );
1442
1442
}
1443
1443
// Inline generic fallback logic to also return a list.
You can’t perform that action at this time.
0 commit comments