Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ea048b6f
Commit
ea048b6f
authored
Dec 04, 2010
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expose CompileString, not CompileStringFlags under the
limited API.
parent
e81a3386
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Include/pythonrun.h
Include/pythonrun.h
+1
-1
PC/python3.def
PC/python3.def
+1
-1
No files found.
Include/pythonrun.h
View file @
ea048b6f
...
...
@@ -74,7 +74,7 @@ PyAPI_FUNC(PyObject *) PyRun_FileExFlags(FILE *, const char *, int,
#endif
#ifdef Py_LIMITED_API
PyAPI_FUNC
(
PyObject
*
)
Py_CompileString
Flags
(
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)
...
...
PC/python3.def
View file @
ea048b6f
...
...
@@ -632,7 +632,7 @@ EXPORTS
Py_AddPendingCall=python32.Py_AddPendingCall
Py_AtExit=python32.Py_AtExit
Py_BuildValue=python32.Py_BuildValue
Py_CompileString
Flags=python32.Py_CompileStringFlags
Py_CompileString
=python32.Py_CompileString
Py_DecRef=python32.Py_DecRef
Py_EndInterpreter=python32.Py_EndInterpreter
Py_Exit=python32.Py_Exit
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment