summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-12-04 12:00:49 +0000
committerMartin v. Löwis <martin@v.loewis.de>2010-12-04 12:00:49 +0000
commitea048b6fe13192022847d7e4f01d1f735b7d3804 (patch)
treef79fe17c94efe92d7f9c604d79dc6032d41ae8de
parente81a33864d723aecf9a378d39388d013fec286c2 (diff)
downloadcpython-ea048b6fe13192022847d7e4f01d1f735b7d3804.tar.gz
Expose CompileString, not CompileStringFlags under the
limited API.
-rw-r--r--Include/pythonrun.h2
-rw-r--r--PC/python3.def2
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index 4eae54922e..f290687b0a 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -74,7 +74,7 @@ PyAPI_FUNC(PyObject *) PyRun_FileExFlags(FILE *, const char *, int,
#endif
#ifdef Py_LIMITED_API
-PyAPI_FUNC(PyObject *) Py_CompileStringFlags(const char *, const char *, int);
+PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
#else
#define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1)
#define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1)
diff --git a/PC/python3.def b/PC/python3.def
index 082d428e4c..54ad149f21 100644
--- a/PC/python3.def
+++ b/PC/python3.def
@@ -632,7 +632,7 @@ EXPORTS
Py_AddPendingCall=python32.Py_AddPendingCall
Py_AtExit=python32.Py_AtExit
Py_BuildValue=python32.Py_BuildValue
- Py_CompileStringFlags=python32.Py_CompileStringFlags
+ Py_CompileString=python32.Py_CompileString
Py_DecRef=python32.Py_DecRef
Py_EndInterpreter=python32.Py_EndInterpreter
Py_Exit=python32.Py_Exit