diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/parsetok.h | 3 | ||||
-rw-r--r-- | Include/pythonrun.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Include/parsetok.h b/Include/parsetok.h index 2b4ce1e..71033dc 100644 --- a/Include/parsetok.h +++ b/Include/parsetok.h @@ -34,7 +34,8 @@ PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int, PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int, perrdetail *, int); -PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *, grammar *, +PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *, + const char*, grammar *, int, char *, char *, perrdetail *, int); 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 *); |