diff options
author | Victor Stinner <vstinner@python.org> | 2020-12-08 22:51:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 22:51:54 (GMT) |
commit | fe6e5e7cfd68eeaa69fd1511f354a1b4d8d90990 (patch) | |
tree | f381b533e98b6756d91c0a682f7575a33af1a16a /PCbuild | |
parent | 815506d852daabc40e14ff0987c1142c0205fbe7 (diff) | |
download | cpython-fe6e5e7cfd68eeaa69fd1511f354a1b4d8d90990.zip cpython-fe6e5e7cfd68eeaa69fd1511f354a1b4d8d90990.tar.gz cpython-fe6e5e7cfd68eeaa69fd1511f354a1b4d8d90990.tar.bz2 |
bpo-35134: Add Include/cpython/pythonrun.h file (GH-23701)
Py_CompileString() is now always declared as a function by
Include/pythonrun.h. It is overriden with a macro in
Include/cpython/pythonrun.h.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index cf78714..bbceb02 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -146,6 +146,7 @@ <ClInclude Include="..\Include\cpython\pylifecycle.h" /> <ClInclude Include="..\Include\cpython\pymem.h" /> <ClInclude Include="..\Include\cpython\pystate.h" /> + <ClInclude Include="..\Include\cpython\pythonrun.h" /> <ClInclude Include="..\Include\cpython\sysmodule.h" /> <ClInclude Include="..\Include\cpython\traceback.h" /> <ClInclude Include="..\Include\cpython\tupleobject.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index ba84ab9..ee1aa90 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -459,6 +459,9 @@ <ClInclude Include="..\Include\cpython\interpreteridobject.h"> <Filter>Include\cpython</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\pythonrun.h"> + <Filter>Include\cpython</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\sysmodule.h"> <Filter>Include\cpython</Filter> </ClInclude> |