Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /* String Literals: _Py_Identifier API */
0002 
0003 #ifndef Py_INTERNAL_IDENTIFIER_H
0004 #define Py_INTERNAL_IDENTIFIER_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 PyObject* _PyType_LookupId(PyTypeObject *, _Py_Identifier *);
0014 extern PyObject* _PyObject_LookupSpecialId(PyObject *, _Py_Identifier *);
0015 extern int _PyObject_SetAttrId(PyObject *, _Py_Identifier *, PyObject *);
0016 
0017 #ifdef __cplusplus
0018 }
0019 #endif
0020 #endif  // !Py_INTERNAL_IDENTIFIER_H