Staging
v0.8.1
https://github.com/python/cpython
Revision aa72b1b448d09ddbff737ee1a3e0cb40cb6ca047 authored by Senthil Kumaran on 17 September 2014, 05:19:01 UTC, committed by Senthil Kumaran on 17 September 2014, 05:19:01 UTC
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
2 parent s f75805e + 2a42a0b
Raw File
Tip revision: aa72b1b448d09ddbff737ee1a3e0cb40cb6ca047 authored by Senthil Kumaran on 17 September 2014, 05:19:01 UTC
Merge from 3.3
Tip revision: aa72b1b
debug.props
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup Label="UserMacros">
    <PyDebugExt>_d</PyDebugExt>
    <KillPythonExe>$(OutDir)kill_python_d.exe</KillPythonExe>
  </PropertyGroup>
  <PropertyGroup>
    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
    <TargetName>$(ProjectName)_d</TargetName>
  </PropertyGroup>
  <ItemDefinitionGroup>
    <ClCompile>
      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    </ClCompile>
    <ResourceCompile>
      <PreprocessorDefinitions>_DEBUG</PreprocessorDefinitions>
    </ResourceCompile>
  </ItemDefinitionGroup>
  <ItemGroup>
    <BuildMacro Include="PyDebugExt">
      <Value>$(PyDebugExt)</Value>
    </BuildMacro>
    <BuildMacro Include="KillPythonExe">
      <Value>$(KillPythonExe)</Value>
    </BuildMacro>
  </ItemGroup>
</Project>
back to top