Skip to content

Commit 989a3d7

Browse files
committed
Minor formatting changes.
1 parent 8d4a250 commit 989a3d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/dictobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3319,13 +3319,13 @@ dict_vectorcall(PyObject *type, PyObject * const*args,
33193319
Py_DECREF(self);
33203320
return NULL;
33213321
}
3322-
args += 1;
3322+
args++;
33233323
}
33243324
if (kwnames == NULL) {
33253325
return self;
33263326
}
33273327
Py_ssize_t items = PyTuple_GET_SIZE(kwnames);
3328-
for(Py_ssize_t index = 0; index < items; index++) {
3328+
for (Py_ssize_t index = 0; index < items; index++) {
33293329
int err = PyDict_SetItem(self, PyTuple_GET_ITEM(kwnames, index), args[index]);
33303330
if (err < 0) {
33313331
Py_DECREF(self);

0 commit comments

Comments
 (0)