vidya7732/AI_Doctor_LLM_GenModel
0
1 2/* simple namespace object interface */3 4#ifndef NAMESPACEOBJECT_H5#define NAMESPACEOBJECT_H6#ifdef __cplusplus7extern "C" {8#endif9 10#ifndef Py_LIMITED_API11PyAPI_DATA(PyTypeObject) _PyNamespace_Type;12 13PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);14#endif /* !Py_LIMITED_API */15 16#ifdef __cplusplus17}18#endif19#endif /* !NAMESPACEOBJECT_H */20 