3#ifndef __NUITKA_COMPILED_METHOD_H__
4#define __NUITKA_COMPILED_METHOD_H__
7#include "compiled_function.h"
8#include "compiled_generator.h"
27#if PYTHON_VERSION >= 0x380
28 vectorcallfunc m_vectorcall;
32extern PyTypeObject Nuitka_Method_Type;
35extern PyObject *Nuitka_Method_New(
struct Nuitka_FunctionObject *function, PyObject *
object, PyObject *class_object);
37static inline bool Nuitka_Method_Check(PyObject *
object) {
return Py_TYPE(
object) == &Nuitka_Method_Type; }
Definition compiled_function.h:22
Definition compiled_method.h:16