• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* String Literals: _Py_Identifier API */
2 
3 #ifndef Py_INTERNAL_IDENTIFIER_H
4 #define Py_INTERNAL_IDENTIFIER_H
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 #ifndef Py_BUILD_CORE
10 #  error "this header requires Py_BUILD_CORE define"
11 #endif
12 
13 extern PyObject* _PyType_LookupId(PyTypeObject *, _Py_Identifier *);
14 extern PyObject* _PyObject_LookupSpecialId(PyObject *, _Py_Identifier *);
15 extern int _PyObject_SetAttrId(PyObject *, _Py_Identifier *, PyObject *);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 #endif  // !Py_INTERNAL_IDENTIFIER_H
21