Skip to content

Commit e83099b

Browse files
committed
comment edit
1 parent 2a56327 commit e83099b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_functoolsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ partial_vectorcall(PyObject *self, PyObject *const *args,
503503
assert(i == pto_nkwds);
504504
Py_XDECREF(pto_kw_merged);
505505

506-
/* Resize Stack if the call has more than 6 keywords
506+
/* Resize Stack if the removing overallocation saves some noticable memory
507507
* NOTE: This whole block can be removed without breaking anything */
508508
Py_ssize_t noveralloc = n_merges + nkwds;
509509
if (stack != small_stack && noveralloc > 6 && noveralloc * 10 > init_stack_size) {

0 commit comments

Comments
 (0)