• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef Py_LIMITED_API
2 #ifndef Py_INTERNAL_IMPORT_H
3 #define Py_INTERNAL_IMPORT_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin(
9     PyThreadState *tstate,
10     const char *name             /* UTF-8 encoded string */
11     );
12 
13 #ifdef HAVE_FORK
14 extern void _PyImport_ReInitLock(void);
15 #endif
16 extern void _PyImport_Cleanup(PyThreadState *tstate);
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 #endif /* !Py_INTERNAL_IMPORT_H */
22 #endif /* !Py_LIMITED_API */
23