33#endif
44
55PyAPI_FUNC (int ) PyRun_SimpleStringFlags (const char * , PyCompilerFlags * );
6- PyAPI_FUNC (int ) _PyRun_SimpleFileObject (
7- FILE * fp ,
8- PyObject * filename ,
9- int closeit ,
10- PyCompilerFlags * flags );
116PyAPI_FUNC (int ) PyRun_AnyFileExFlags (
127 FILE * fp ,
138 const char * filename , /* decoded from the filesystem encoding */
149 int closeit ,
1510 PyCompilerFlags * flags );
16- PyAPI_FUNC (int ) _PyRun_AnyFileObject (
17- FILE * fp ,
18- PyObject * filename ,
19- int closeit ,
20- PyCompilerFlags * flags );
2111PyAPI_FUNC (int ) PyRun_SimpleFileExFlags (
2212 FILE * fp ,
2313 const char * filename , /* decoded from the filesystem encoding */
@@ -35,10 +25,6 @@ PyAPI_FUNC(int) PyRun_InteractiveLoopFlags(
3525 FILE * fp ,
3626 const char * filename , /* decoded from the filesystem encoding */
3727 PyCompilerFlags * flags );
38- PyAPI_FUNC (int ) _PyRun_InteractiveLoopObject (
39- FILE * fp ,
40- PyObject * filename ,
41- PyCompilerFlags * flags );
4228
4329
4430PyAPI_FUNC (PyObject * ) PyRun_StringFlags (const char * , int , PyObject * ,
@@ -69,15 +55,6 @@ PyAPI_FUNC(PyObject *) Py_CompileStringObject(
6955#define Py_CompileString (str , p , s ) Py_CompileStringExFlags((str), (p), (s), NULL, -1)
7056#define Py_CompileStringFlags (str , p , s , f ) Py_CompileStringExFlags((str), (p), (s), (f), -1)
7157
72-
73- PyAPI_FUNC (const char * ) _Py_SourceAsString (
74- PyObject * cmd ,
75- const char * funcname ,
76- const char * what ,
77- PyCompilerFlags * cf ,
78- PyObject * * cmd_copy );
79-
80-
8158/* A function flavor is also exported by libpython. It is required when
8259 libpython is accessed directly rather than using header files which defines
8360 macros below. On Windows, for example, PyAPI_FUNC() uses dllexport to
@@ -114,7 +91,6 @@ PyAPI_FUNC(PyObject *) PyRun_FileFlags(FILE *fp, const char *p, int s, PyObject
11491#define PyRun_FileFlags (fp , p , s , g , l , flags ) \
11592 PyRun_FileExFlags((fp), (p), (s), (g), (l), 0, (flags))
11693
117-
11894/* Stuff with no proper home (yet) */
11995PyAPI_FUNC (char * ) PyOS_Readline (FILE * , FILE * , const char * );
12096PyAPI_DATA (char ) * (* PyOS_ReadlineFunctionPointer )(FILE * , FILE * , const char * );
0 commit comments