3
3
#endif
4
4
5
5
PyAPI_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 );
11
6
PyAPI_FUNC (int ) PyRun_AnyFileExFlags (
12
7
FILE * fp ,
13
8
const char * filename , /* decoded from the filesystem encoding */
14
9
int closeit ,
15
10
PyCompilerFlags * flags );
16
- PyAPI_FUNC (int ) _PyRun_AnyFileObject (
17
- FILE * fp ,
18
- PyObject * filename ,
19
- int closeit ,
20
- PyCompilerFlags * flags );
21
11
PyAPI_FUNC (int ) PyRun_SimpleFileExFlags (
22
12
FILE * fp ,
23
13
const char * filename , /* decoded from the filesystem encoding */
@@ -35,10 +25,6 @@ PyAPI_FUNC(int) PyRun_InteractiveLoopFlags(
35
25
FILE * fp ,
36
26
const char * filename , /* decoded from the filesystem encoding */
37
27
PyCompilerFlags * flags );
38
- PyAPI_FUNC (int ) _PyRun_InteractiveLoopObject (
39
- FILE * fp ,
40
- PyObject * filename ,
41
- PyCompilerFlags * flags );
42
28
43
29
44
30
PyAPI_FUNC (PyObject * ) PyRun_StringFlags (const char * , int , PyObject * ,
@@ -69,15 +55,6 @@ PyAPI_FUNC(PyObject *) Py_CompileStringObject(
69
55
#define Py_CompileString (str , p , s ) Py_CompileStringExFlags((str), (p), (s), NULL, -1)
70
56
#define Py_CompileStringFlags (str , p , s , f ) Py_CompileStringExFlags((str), (p), (s), (f), -1)
71
57
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
-
81
58
/* A function flavor is also exported by libpython. It is required when
82
59
libpython is accessed directly rather than using header files which defines
83
60
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
114
91
#define PyRun_FileFlags (fp , p , s , g , l , flags ) \
115
92
PyRun_FileExFlags((fp), (p), (s), (g), (l), 0, (flags))
116
93
117
-
118
94
/* Stuff with no proper home (yet) */
119
95
PyAPI_FUNC (char * ) PyOS_Readline (FILE * , FILE * , const char * );
120
96
PyAPI_DATA (char ) * (* PyOS_ReadlineFunctionPointer )(FILE * , FILE * , const char * );
0 commit comments