Staging
v0.5.1
https://github.com/python/cpython
Revision a0c9caad66f01328155177180df1c46fe7c62e57 authored by Gregory P. Smith on 16 November 2015, 02:19:10 UTC, committed by Gregory P. Smith on 16 November 2015, 02:19:10 UTC
not allow the send_signal(), terminate(), or kill() methods to do
anything as they could potentially signal a different process.
1 parent 025a1fd
Raw File
Tip revision: a0c9caad66f01328155177180df1c46fe7c62e57 authored by Gregory P. Smith on 16 November 2015, 02:19:10 UTC
Fix issue #6973: When we know a subprocess.Popen process has died, do
Tip revision: a0c9caa
sqlite3.vcxproj.filters
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <Filter Include="Header Files">
      <UniqueIdentifier>{ce5b649d-a6f7-4459-9425-c883795d79df}</UniqueIdentifier>
    </Filter>
    <Filter Include="Source Files">
      <UniqueIdentifier>{0e842fe2-176b-4e83-9d1f-0ad13a859efd}</UniqueIdentifier>
    </Filter>
  </ItemGroup>
  <ItemGroup>
    <ClInclude Include="$(sqlite3Dir)\sqlite3.h">
      <Filter>Header Files</Filter>
    </ClInclude>
    <ClInclude Include="$(sqlite3Dir)\sqlite3ext.h">
      <Filter>Header Files</Filter>
    </ClInclude>
  </ItemGroup>
  <ItemGroup>
    <ClCompile Include="$(sqlite3Dir)\sqlite3.c">
      <Filter>Source Files</Filter>
    </ClCompile>
  </ItemGroup>
</Project>
back to top