]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
improve PyFunction_New docs (closes #26986)
authorBenjamin Peterson <benjamin@python.org>
Tue, 10 May 2016 06:43:53 +0000 (23:43 -0700)
committerBenjamin Peterson <benjamin@python.org>
Tue, 10 May 2016 06:43:53 +0000 (23:43 -0700)
Patch from Xiang Zhang.

Doc/c-api/function.rst

index 4c74dc8744370ca933ef9ab86472c8977514f17b..17279c732ae07660b13ee7a67572187c32961fd8 100644 (file)
@@ -34,8 +34,9 @@ There are a few functions specific to Python functions.
    Return a new function object associated with the code object *code*. *globals*
    must be a dictionary with the global variables accessible to the function.
 
-   The function's docstring, name and *__module__* are retrieved from the code
-   object, the argument defaults and closure are set to *NULL*.
+   The function's docstring and name are retrieved from the code object. *__module__*
+   is retrieved from *globals*. The argument defaults, annotations and closure are
+   set to *NULL*. *__qualname__* is set to the same value as the function's name.
 
 
 .. c:function:: PyObject* PyFunction_NewWithQualName(PyObject *code, PyObject *globals, PyObject *qualname)