Home
last modified time | relevance | path

Searched refs:PyCFunction_Type (Results 1 – 25 of 132) sorted by relevance

123456

/dports/lang/python310/Python-3.10.1/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)
17 #define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
/dports/lang/python39/Python-3.9.9/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)
17 #define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
/dports/lang/python311/Python-3.11.0a3/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)
17 #define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_9/cpython_src/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)
17 #define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_10/cpython_src/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)
17 #define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
/dports/lang/python-legacy/Python-2.7.18/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/lang/python27/Python-2.7.18/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/www/domoticz/domoticz-2020.2/hardware/plugins/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_6/cpython_src/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/databases/py-gdbm/Python-3.8.12/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/lang/python37/Python-3.7.12/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/lang/python38/Python-3.8.12/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/lang/python-tools/Python-3.8.12/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/databases/py-sqlite3/Python-3.8.12/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_7/cpython_src/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_8/cpython_src/Include/
H A Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/dports/lang/python37/Python-3.7.12/Objects/
H A Dmethodobject.c34 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
38 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
268 PyTypeObject PyCFunction_Type = { variable
/dports/lang/python27/Python-2.7.18/Objects/
H A Dmethodobject.c23 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
27 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
281 PyTypeObject PyCFunction_Type = { variable
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dmethodobject.c23 PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
27 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
281 PyTypeObject PyCFunction_Type = { variable
/dports/lang/python-legacy/Python-2.7.18/Objects/
H A Dmethodobject.c23 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
27 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
281 PyTypeObject PyCFunction_Type = { variable
/dports/databases/py-sqlite3/Python-3.8.12/Objects/
H A Dmethodobject.c74 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
78 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
305 PyTypeObject PyCFunction_Type = { variable
/dports/databases/py-gdbm/Python-3.8.12/Objects/
H A Dmethodobject.c74 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
78 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
305 PyTypeObject PyCFunction_Type = { variable
/dports/lang/python-tools/Python-3.8.12/Objects/
H A Dmethodobject.c74 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
78 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
305 PyTypeObject PyCFunction_Type = { variable

123456