Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-11-19 09:50:48

0001 // Simple namespace object interface
0002 
0003 #ifndef Py_INTERNAL_NAMESPACE_H
0004 #define Py_INTERNAL_NAMESPACE_H
0005 #ifdef __cplusplus
0006 extern "C" {
0007 #endif
0008 
0009 #ifndef Py_BUILD_CORE
0010 #  error "this header requires Py_BUILD_CORE define"
0011 #endif
0012 
0013 extern PyTypeObject _PyNamespace_Type;
0014 
0015 // Export for '_testmultiphase' shared extension
0016 PyAPI_FUNC(PyObject*) _PyNamespace_New(PyObject *kwds);
0017 
0018 #ifdef __cplusplus
0019 }
0020 #endif
0021 #endif  // !Py_INTERNAL_NAMESPACE_H