diff options
Diffstat (limited to 'Objects/funcobject.c')
-rw-r--r-- | Objects/funcobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/funcobject.c b/Objects/funcobject.c index fddb120..594e524 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -297,7 +297,7 @@ func_set_code(PyFunctionObject *op, PyObject *value) PyErr_Format(PyExc_ValueError, "%s() requires a code object with %zd free vars," " not %zd", - PyUnicode_AsString(op->func_name), + _PyUnicode_AsString(op->func_name), nclosure, nfree); return -1; } |