Staging
v0.5.1
https://github.com/python/cpython
Revision adb2e2ab647eae7dd8077d617055872d52dfc6ad authored by Victor Stinner on 03 March 2014, 10:57:57 UTC, committed by Victor Stinner on 03 March 2014, 10:57:57 UTC
1 parent 0c3ea09
Raw File
Tip revision: adb2e2ab647eae7dd8077d617055872d52dfc6ad authored by Victor Stinner on 03 March 2014, 10:57:57 UTC
Close #20814: doc: Fix "Pretty top" example of tracemalloc
Tip revision: adb2e2a
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