[Python-checkins] cpython: Issue #22869: Add pylifecycle.c/.h files to pythoncore project.

steve.dower python-checkins at python.org
Fri Nov 21 01:46:49 CET 2014


https://hg.python.org/cpython/rev/31fd106bb68a
changeset:   93525:31fd106bb68a
user:        Steve Dower <steve.dower at microsoft.com>
date:        Thu Nov 20 16:45:36 2014 -0800
summary:
  Issue #22869: Add pylifecycle.c/.h files to pythoncore project.

files:
  PCbuild/pythoncore.vcxproj         |  2 ++
  PCbuild/pythoncore.vcxproj.filters |  6 ++++++
  2 files changed, 8 insertions(+), 0 deletions(-)


diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -502,6 +502,7 @@
     <ClInclude Include="..\Include\pyexpat.h" />
     <ClInclude Include="..\Include\pyfpe.h" />
     <ClInclude Include="..\Include\pygetopt.h" />
+    <ClInclude Include="..\Include\pylifecycle.h" />
     <ClInclude Include="..\Include\pymath.h" />
     <ClInclude Include="..\Include\pytime.h" />
     <ClInclude Include="..\Include\pymacro.h" />
@@ -734,6 +735,7 @@
     <ClCompile Include="..\Python\pyarena.c" />
     <ClCompile Include="..\Python\pyctype.c" />
     <ClCompile Include="..\Python\pyfpe.c" />
+    <ClCompile Include="..\Python\pylifecycle.c" />
     <ClCompile Include="..\Python\pymath.c" />
     <ClCompile Include="..\Python\pytime.c" />
     <ClCompile Include="..\Python\pystate.c" />
diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters
--- a/PCbuild/pythoncore.vcxproj.filters
+++ b/PCbuild/pythoncore.vcxproj.filters
@@ -216,6 +216,9 @@
     <ClInclude Include="..\Include\pygetopt.h">
       <Filter>Include</Filter>
     </ClInclude>
+    <ClInclude Include="..\Include\pylifecycle.h">
+      <Filter>Include</Filter>
+    </ClInclude>
     <ClInclude Include="..\Include\pymath.h">
       <Filter>Include</Filter>
     </ClInclude>
@@ -890,6 +893,9 @@
     <ClCompile Include="..\Python\pyfpe.c">
       <Filter>Python</Filter>
     </ClCompile>
+    <ClCompile Include="..\Python\pylifecycle.c">
+      <Filter>Python</Filter>
+    </ClCompile>
     <ClCompile Include="..\Python\pymath.c">
       <Filter>Python</Filter>
     </ClCompile>

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list