diff options
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index 08278cf..607826a 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -40,7 +40,8 @@ PyAPI_FUNC(int) PyRun_InteractiveLoopFlags(FILE *, const char *, PyCompilerFlags PyAPI_FUNC(struct _mod *) PyParser_ASTFromString(const char *, const char *, int, PyCompilerFlags *flags, PyArena *); -PyAPI_FUNC(struct _mod *) PyParser_ASTFromFile(FILE *, const char *, int, +PyAPI_FUNC(struct _mod *) PyParser_ASTFromFile(FILE *, const char *, + const char*, int, char *, char *, PyCompilerFlags *, int *, PyArena *); |