funcobject_c.h
来自「minimal python variant for small footpri」· C头文件 代码 · 共 16 行
H
16 行
#ifndef FUNCOBJECT_C_H#define FUNCOBJECT_C_H#include "proto_defs.h"DESTRUCTOR_PROTO(func_dealloc, PyFunctionObject) SEG_FUNCOBJECT_C;GETATTRFUNC_PROTO(func_getattr, PyFunctionObject) SEG_FUNCOBJECT_C;CMPFUNC_PROTO(func_compare, PyFunctionObject) SEG_FUNCOBJECT_C;REPRFUNC_PROTO(func_repr, PyFunctionObject) SEG_FUNCOBJECT_C;HASHFUNC_PROTO(func_hash, PyFunctionObject) SEG_FUNCOBJECT_C;static int func_setattr(PyFunctionObject *op, char *name, PyObject *value) SEG_FUNCOBJECT_C;#endif /* FUNCOBJECT_C_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?