Skip to content

Commit 12aa0c5

Browse files
author
mhammond
committed
Correct error to PyRun_SimpleString macro introduced in AST merge.
git-svn-id: http://svn.python.org/projects/python/trunk@39792 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent cd76052 commit 12aa0c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/pythonrun.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ PyAPI_FUNC(int) Py_Main(int argc, char **argv);
8282
PyRun_AnyFileExFlags(fp, name, closeit, NULL)
8383
#define PyRun_AnyFileFlags(fp, name, flags) \
8484
PyRun_AnyFileExFlags(fp, name, 0, flags)
85-
#define PyRun_SimpleString(s, f) PyRunSimpleStringFlags(s, f, NULL)
85+
#define PyRun_SimpleString(s) PyRun_SimpleStringFlags(s, NULL)
8686
#define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL)
8787
#define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
8888
#define PyRun_InteractiveOne(f, p) PyRun_InteractiveOneFlags(f, p, NULL)

0 commit comments

Comments
 (0)