⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 funcobject_c.h

📁 minimal python variant for small footprint apps like embedded apps
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -