From: Victor Stinner Date: Thu, 23 Feb 2017 17:26:43 +0000 (+0100) Subject: Document why functools.partial() must copy kwargs (#253) X-Git-Tag: v3.7.0a1~1296 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=561ca80cffd37445bac82ff820b8f52b98c50517;p=python Document why functools.partial() must copy kwargs (#253) Add a comment to prevent further attempts to avoid a copy for optimization. --- diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index c8565054c9..dcaa99f91f 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -163,6 +163,9 @@ partial_call(partialobject *pto, PyObject *args, PyObject *kw) Py_XINCREF(kwappl); } else { + /* bpo-27840, bpo-29318: dictionary of keyword parameters must be + copied, because a function using "**kwargs" can modify the + dictionary. */ kwappl = PyDict_Copy(pto->kw); if (kwappl == NULL) { Py_XDECREF(argappl); diff --git a/Objects/call.c b/Objects/call.c index bc32090938..310b4a205f 100644 --- a/Objects/call.c +++ b/Objects/call.c @@ -317,8 +317,8 @@ _PyFunction_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, if (nk != 0) { Py_ssize_t pos, i; - /* Issue #29318: Caller and callee functions must not share the - dictionary: kwargs must be copied. */ + /* bpo-29318, bpo-27840: Caller and callee functions must not share + the dictionary: kwargs must be copied. */ kwtuple = PyTuple_New(2 * nk); if (kwtuple == NULL) { return NULL;