Skip to content

Commit 1f21e74

Browse files
committed
comment
1 parent 192d261 commit 1f21e74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_functoolsmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,8 +502,8 @@ partial_vectorcall(PyObject *self, PyObject *const *args,
502502
assert(i == tot_nkwds - n_merges);
503503
Py_XDECREF(pto_kw_merged);
504504

505-
/* Resize Stack if the call has keywords
506-
* Only resize if nkwds > 6 (1% of github use cases have 7 or more kwds) */
505+
/* Resize Stack if the call has more than 6 keywords
506+
* (1% of github use cases have 7 or more kwds) */
507507
if (nkwds > 6 && stack != small_stack) {
508508
tmp_stack = PyMem_Realloc(stack, (tot_nargskw - n_merges) * sizeof(PyObject *));
509509
if (tmp_stack == NULL) {

0 commit comments

Comments
 (0)