Staging
v0.5.1
https://github.com/python/cpython
Revision 26f82efe591a997bcf62111d1776c296f8088623 authored by Antoine Pitrou on 29 April 2014, 10:13:46 UTC, committed by Antoine Pitrou on 29 April 2014, 10:13:46 UTC
1 parent 9cc9026
Raw File
Tip revision: 26f82efe591a997bcf62111d1776c296f8088623 authored by Antoine Pitrou on 29 April 2014, 10:13:46 UTC
Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted.
Tip revision: 26f82ef
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