diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-06-03 16:16:39 +0800 |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-06-03 16:16:39 +0800 |
commit | fe4dfd2b65850f0cddec700e2f747fec611b4be9 (patch) | |
tree | 37acd3c73a0a549f35235bb145c8a60a928b3071 /Include/pythonrun.h | |
parent | 1251fafcc57091d952bb1cc9b1e1a77f39c59b7b (diff) | |
parent | 2168b31cac93aa36273dc5974db5fb446a6679eb (diff) | |
download | cpython-git-fe4dfd2b65850f0cddec700e2f747fec611b4be9.tar.gz |
merge heads
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index 48e39a4522..e5620ee326 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -82,9 +82,12 @@ PyAPI_FUNC(struct _mod *) PyParser_ASTFromFile( PyParser_SimpleParseFileFlags(FP, S, B, 0) #endif PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlags(const char *, int, - int); + int); +PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlagsFilename(const char *, + const char *, + int, int); PyAPI_FUNC(struct _node *) PyParser_SimpleParseFileFlags(FILE *, const char *, - int, int); + int, int); #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *, |