有一些特定于 python 函数的函数。
创新互联专注于柳州企业网站建设,响应式网站,商城网站定制开发。柳州网站建设公司,为柳州等地区提供建站服务。全流程按需定制开发,专业设计,全程项目跟踪,创新互联专业和态度为您提供的服务
type PyFunctionObject
用于函数的 C 结构体。
PyTypeObject PyFunction_Type
这是一个 PyTypeObject 实例并表示 Python 函数类型。 它作为 types.FunctionType
向 Python 程序员公开。
int PyFunction_Check(PyObject *o)
如果 o 是一个函数对象 (类型为 PyFunction_Type) 则返回真值。 形参必须不为 NULL
。 此函数总是会成功执行。
PyObject *PyFunction_New(PyObject *code, PyObject *globals)
Return value: New reference.
返回与代码对象 code 关联的新函数对象。 globals 必须是一个字典,该函数可以访问全局变量。
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 code object’s co_qualname
field.
PyObject *PyFunction_NewWithQualName(PyObject *code, PyObject *globals, PyObject *qualname)
Return value: New reference.
As PyFunction_New(), but also allows setting the function object’s __qualname__
attribute. qualname should be a unicode object or NULL
; if NULL
, the __qualname__
attribute is set to the same value as the code object’s co_qualname
field.
3.3 新版功能.
PyObject *PyFunction_GetCode(PyObject *op)
Return value: Borrowed reference.
返回与函数对象 op 关联的代码对象。
PyObject *PyFunction_GetGlobals(PyObject *op)
Return value: Borrowed reference.
返回与函数对象*op*相关联的全局字典。
PyObject *PyFunction_GetModule(PyObject *op)
Return value: Borrowed reference.
向函数对象 op 的 __module__ 属性返回一个 borrowed reference。 该值可以为 NULL。
这通常为一个包含模块名称的字符串,但可以通过 Python 代码设为任何其他对象。
PyObject *PyFunction_GetDefaults(PyObject *op)
Return value: Borrowed reference.
返回函数对象 op 的参数默认值。 这可以是一个参数元组或 NULL
。
int PyFunction_SetDefaults(PyObject *op, PyObject *defaults)
为函数对象 op 设置参数默认值。 defaults 必须为 Py_None
或一个元组。
失败时引发 SystemError 异常并返回 -1
。
PyObject *PyFunction_GetClosure(PyObject *op)
Return value: Borrowed reference.
返回关联到函数对象 op 的闭包。 这可以是 NULL
或 cell 对象的元组。
int PyFunction_SetClosure(PyObject *op, PyObject *closure)
设置关联到函数对象 op 的闭包。 closure 必须为 Py_None
或 cell 对象的元组。
失败时引发 SystemError 异常并返回 -1
。
PyObject *PyFunction_GetAnnotations(PyObject *op)
Return value: Borrowed reference.
返回函数对象 op 的标注。 这可以是一个可变字典或 NULL
。
int PyFunction_SetAnnotations(PyObject *op, PyObject *annotations)
设置函数对象 op 的标注。 annotations 必须为一个字典或 Py_None
。
失败时引发 SystemError 异常并返回 -1
。
文章标题:创新互联Python教程:Function 对象
文章来源:http://www.shufengxianlan.com/qtweb/news24/221174.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联