|
||||
File indexing completed on 2025-01-18 10:06:46
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 PyAPI_DATA(PyTypeObject) _PyNamespace_Type; 0014 0015 PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds); 0016 0017 #ifdef __cplusplus 0018 } 0019 #endif 0020 #endif // !Py_INTERNAL_NAMESPACE_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |