|
Orbits
1
|
Go to the source code of this file.
Classes | |
| struct | PyFunctionObject |
Macros | |
| #define | PyFunction_Check(op) (Py_TYPE(op) == &PyFunction_Type) |
| #define | PyFunction_GET_CODE(func) (((PyFunctionObject *)func) -> func_code) |
| #define | PyFunction_GET_GLOBALS(func) (((PyFunctionObject *)func) -> func_globals) |
| #define | PyFunction_GET_MODULE(func) (((PyFunctionObject *)func) -> func_module) |
| #define | PyFunction_GET_DEFAULTS(func) (((PyFunctionObject *)func) -> func_defaults) |
| #define | PyFunction_GET_CLOSURE(func) (((PyFunctionObject *)func) -> func_closure) |
Functions | |
| PyAPI_DATA (PyTypeObject) PyFunction_Type | |
| PyAPI_FUNC (PyObject *) PyFunction_New(PyObject * | |
| PyAPI_FUNC (int) PyFunction_SetDefaults(PyObject * | |
| #define PyFunction_Check | ( | op | ) | (Py_TYPE(op) == &PyFunction_Type) |
| #define PyFunction_GET_CLOSURE | ( | func | ) | (((PyFunctionObject *)func) -> func_closure) |
| #define PyFunction_GET_CODE | ( | func | ) | (((PyFunctionObject *)func) -> func_code) |
| #define PyFunction_GET_DEFAULTS | ( | func | ) | (((PyFunctionObject *)func) -> func_defaults) |
| #define PyFunction_GET_GLOBALS | ( | func | ) | (((PyFunctionObject *)func) -> func_globals) |
| #define PyFunction_GET_MODULE | ( | func | ) | (((PyFunctionObject *)func) -> func_module) |
| PyAPI_DATA | ( | PyTypeObject | ) |
|
read |
|
read |
1.8.3.1
Copyright 2014 Google Inc. All rights reserved.