cpython/PCbuild8/pythoncore/pythoncore.vcproj
Christian Heimes 99170a5dbf Merged revisions 59541-59561 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r59544 | raymond.hettinger | 2007-12-18 01:13:45 +0100 (Tue, 18 Dec 2007) | 1 line

  Add more namedtuple() test cases.  Neaten the code and comments.
........
  r59545 | christian.heimes | 2007-12-18 04:38:03 +0100 (Tue, 18 Dec 2007) | 3 lines

  Fixed for #1601: IDLE not working correctly on Windows (Py30a2/IDLE30a1)

  Amaury's ideas works great. Should we build the Python core with WINVER=0x0500 and _WIN32_WINNT=0x0500, too?
........
  r59546 | christian.heimes | 2007-12-18 10:00:13 +0100 (Tue, 18 Dec 2007) | 1 line

  Make it a bit easier to test Tcl/Tk and idle from a build dir.
........
  r59547 | christian.heimes | 2007-12-18 10:12:10 +0100 (Tue, 18 Dec 2007) | 1 line

  Removed several unused files from the PCbuild9 directory. They are relics from the past.
........
  r59548 | raymond.hettinger | 2007-12-18 19:26:18 +0100 (Tue, 18 Dec 2007) | 29 lines

  Speed-up dictionary constructor by about 10%.

  New opcode, STORE_MAP saves the compiler from awkward stack manipulations
  and specializes for dicts using PyDict_SetItem instead of PyObject_SetItem.

  Old disassembly:
                0 BUILD_MAP                0
                3 DUP_TOP
                4 LOAD_CONST               1 (1)
                7 ROT_TWO
                8 LOAD_CONST               2 ('x')
               11 STORE_SUBSCR
               12 DUP_TOP
               13 LOAD_CONST               3 (2)
               16 ROT_TWO
               17 LOAD_CONST               4 ('y')
               20 STORE_SUBSCR

  New disassembly:
                0 BUILD_MAP                0
                3 LOAD_CONST               1 (1)
                6 LOAD_CONST               2 ('x')
                9 STORE_MAP
               10 LOAD_CONST               3 (2)
               13 LOAD_CONST               4 ('y')
               16 STORE_MAP
........
  r59549 | thomas.heller | 2007-12-18 20:00:34 +0100 (Tue, 18 Dec 2007) | 2 lines

  Issue #1642: Fix segfault in ctypes when trying to delete attributes.
........
  r59551 | guido.van.rossum | 2007-12-18 21:10:42 +0100 (Tue, 18 Dec 2007) | 2 lines

  Issue #1645 by Alberto Bertogli.  Fix a comment.
........
  r59553 | raymond.hettinger | 2007-12-18 22:24:09 +0100 (Tue, 18 Dec 2007) | 12 lines

  Give meaning to the oparg for BUILD_MAP:  estimated size of the dictionary.

  Allows dictionaries to be pre-sized (upto 255 elements) saving time lost
  to re-sizes with their attendant mallocs and re-insertions.

  Has zero effect on small dictionaries (5 elements or fewer), a slight
  benefit for dicts upto 22 elements (because they had to resize once
  anyway), and more benefit for dicts upto 255 elements (saving multiple
  resizes during the build-up and reducing the number of collisions on
  the first insertions).  Beyond 255 elements, there is no addional benefit.
........
  r59554 | christian.heimes | 2007-12-18 22:56:09 +0100 (Tue, 18 Dec 2007) | 1 line

  Fixed #1649: IDLE error: dictionary changed size during iteration
........
  r59557 | raymond.hettinger | 2007-12-18 23:21:27 +0100 (Tue, 18 Dec 2007) | 1 line

  Simplify and speedup _asdict() for named tuples.
........
  r59558 | christian.heimes | 2007-12-19 00:22:54 +0100 (Wed, 19 Dec 2007) | 3 lines

  Applied patch #1635: Float patch for inf and nan on Windows (and other platforms).

  The patch unifies float("inf") and repr(float("inf")) on all platforms.
........
  r59559 | raymond.hettinger | 2007-12-19 00:51:15 +0100 (Wed, 19 Dec 2007) | 1 line

  Users demand iterable input for named tuples. The author capitulates.
........
  r59560 | raymond.hettinger | 2007-12-19 01:21:06 +0100 (Wed, 19 Dec 2007) | 1 line

  Beef-up tests for dict literals
........
  r59561 | raymond.hettinger | 2007-12-19 01:27:21 +0100 (Wed, 19 Dec 2007) | 1 line

  Zap a duplicate line
........
2007-12-19 02:07:34 +00:00

1892 lines
36 KiB
XML

<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="pythoncore"
ProjectGUID="{987306EC-6BAD-4440-B4FB-A699A1EE6A28}"
RootNamespace="PCBuild9"
Keyword="Win32Proj"
>
<Platforms>
<Platform
Name="Win32"
/>
<Platform
Name="x64"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|Win32"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
MinimalRebuild="true"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
WarningLevel="3"
DebugInformationFormat="4"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName)_d.dll"
LinkIncremental="2"
GenerateDebugInformation="true"
SubSystem="2"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Debug|x64"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
TargetEnvironment="3"
/>
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
MinimalRebuild="true"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
WarningLevel="3"
DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName)_d.dll"
LinkIncremental="2"
GenerateDebugInformation="true"
SubSystem="2"
TargetMachine="17"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|Win32"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
RuntimeLibrary="2"
WarningLevel="3"
DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName).dll"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="2"
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|x64"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
TargetEnvironment="3"
/>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
RuntimeLibrary="2"
WarningLevel="3"
DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName).dll"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="2"
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="17"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="PGInstrument|Win32"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;..\PGInstrument.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
RuntimeLibrary="2"
WarningLevel="3"
DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName).dll"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="2"
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="PGInstrument|x64"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;..\PGInstrument.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
TargetEnvironment="3"
/>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
RuntimeLibrary="2"
WarningLevel="3"
DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName).dll"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="2"
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="17"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="PGUpdate|Win32"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;..\PGUpdate.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
RuntimeLibrary="2"
WarningLevel="3"
DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName).dll"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="2"
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="PGUpdate|x64"
ConfigurationType="2"
InheritedPropertySheets="..\pyproject.vsprops;..\PGUpdate.vsprops;.\getbuildinfo.vsprops"
CharacterSet="0"
WholeProgramOptimization="1"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
TargetEnvironment="3"
/>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;Py_BUILD_CORE"
RuntimeLibrary="2"
WarningLevel="3"
DebugInformationFormat="3"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
OutputFile="$(OutDir)\$(PyDllName).dll"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="2"
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="17"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="Python"
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
<File
RelativePath="..\..\Python\asdl.c"
>
</File>
<File
RelativePath="..\..\Python\ast.c"
>
</File>
<File
RelativePath="..\..\Python\atof.c"
>
</File>
<File
RelativePath="..\..\Python\bltinmodule.c"
>
</File>
<File
RelativePath="..\..\Python\ceval.c"
>
</File>
<File
RelativePath="..\..\Python\codecs.c"
>
</File>
<File
RelativePath="..\..\Python\compile.c"
>
</File>
<File
RelativePath="..\..\Python\dynload_win.c"
>
</File>
<File
RelativePath="..\..\Python\errors.c"
>
</File>
<File
RelativePath="..\..\Python\frozen.c"
>
</File>
<File
RelativePath="..\..\Python\future.c"
>
</File>
<File
RelativePath="..\..\Python\getargs.c"
>
</File>
<File
RelativePath="..\..\Python\getcompiler.c"
>
</File>
<File
RelativePath="..\..\Python\getcopyright.c"
>
</File>
<File
RelativePath="..\..\Python\getmtime.c"
>
</File>
<File
RelativePath="..\..\Python\getopt.c"
>
</File>
<File
RelativePath="..\..\Python\getplatform.c"
>
</File>
<File
RelativePath="..\..\Python\getversion.c"
>
</File>
<File
RelativePath="..\..\Python\graminit.c"
>
</File>
<File
RelativePath="..\..\Python\import.c"
>
</File>
<File
RelativePath="..\..\Python\importdl.c"
>
</File>
<File
RelativePath="..\..\Python\importdl.h"
>
</File>
<File
RelativePath="..\..\Python\marshal.c"
>
</File>
<File
RelativePath="..\..\Python\modsupport.c"
>
</File>
<File
RelativePath="..\..\Python\mysnprintf.c"
>
</File>
<File
RelativePath="..\..\Python\mystrtoul.c"
>
</File>
<File
RelativePath="..\..\Python\peephole.c"
>
</File>
<File
RelativePath="..\..\Python\pyarena.c"
>
</File>
<File
RelativePath="..\..\Python\pyfpe.c"
>
</File>
<File
RelativePath="..\..\Python\pystate.c"
>
</File>
<File
RelativePath="..\..\Python\pystrcmp.c"
>
</File>
<File
RelativePath="..\..\Python\pystrtod.c"
>
</File>
<File
RelativePath="..\..\Python\formatter_unicode.c"
>
</File>
<File
RelativePath="..\..\Python\Python-ast.c"
>
</File>
<File
RelativePath="..\..\Python\pythonrun.c"
>
</File>
<File
RelativePath="..\..\Python\structmember.c"
>
</File>
<File
RelativePath="..\..\Python\symtable.c"
>
</File>
<File
RelativePath="..\..\Python\sysmodule.c"
>
</File>
<File
RelativePath="..\..\Python\thread.c"
>
</File>
<File
RelativePath="..\..\Python\thread_nt.h"
>
</File>
<File
RelativePath="..\..\Python\traceback.c"
>
</File>
</Filter>
<Filter
Name="Objects"
>
<File
RelativePath="..\..\Objects\abstract.c"
>
</File>
<File
RelativePath="..\..\Objects\boolobject.c"
>
</File>
<File
RelativePath="..\..\Objects\bytes_methods.c"
>
</File>
<File
RelativePath="..\..\Objects\bytesobject.c"
>
</File>
<File
RelativePath="..\..\Objects\cellobject.c"
>
</File>
<File
RelativePath="..\..\Objects\classobject.c"
>
</File>
<File
RelativePath="..\..\Objects\cobject.c"
>
</File>
<File
RelativePath="..\..\Objects\codeobject.c"
>
</File>
<File
RelativePath="..\..\Objects\complexobject.c"
>
</File>
<File
RelativePath="..\..\Objects\stringlib\count.h"
>
</File>
<File
RelativePath="..\..\Objects\descrobject.c"
>
</File>
<File
RelativePath="..\..\Objects\dictobject.c"
>
</File>
<!--File
RelativePath="..\..\Objects\doubledigits.c"
>
</File-->
<File
RelativePath="..\..\Objects\doubledigits.c"
>
</File>
<File
RelativePath="..\..\Objects\memoryobject.c"
>
</File>
<File
RelativePath="..\..\Objects\enumobject.c"
>
</File>
<File
RelativePath="..\..\Objects\exceptions.c"
>
</File>
<File
RelativePath="..\..\Objects\stringlib\fastsearch.h"
>
</File>
<File
RelativePath="..\..\Objects\fileobject.c"
>
</File>
<File
RelativePath="..\..\Objects\stringlib\find.h"
>
</File>
<File
RelativePath="..\..\Objects\floatobject.c"
>
</File>
<File
RelativePath="..\..\Objects\frameobject.c"
>
</File>
<File
RelativePath="..\..\Objects\funcobject.c"
>
</File>
<File
RelativePath="..\..\Objects\genobject.c"
>
</File>
<File
RelativePath="..\..\Objects\iterobject.c"
>
</File>
<File
RelativePath="..\..\Objects\listobject.c"
>
</File>
<File
RelativePath="..\..\Objects\longobject.c"
>
</File>
<File
RelativePath="..\..\Objects\methodobject.c"
>
</File>
<File
RelativePath="..\..\Objects\moduleobject.c"
>
</File>
<File
RelativePath="..\..\Objects\object.c"
>
</File>
<File
RelativePath="..\..\Objects\obmalloc.c"
>
</File>
<File
RelativePath="..\..\Objects\stringlib\partition.h"
>
</File>
<File
RelativePath="..\..\Objects\rangeobject.c"
>
</File>
<File
RelativePath="..\..\Objects\setobject.c"
>
</File>
<File
RelativePath="..\..\Objects\sliceobject.c"
>
</File>
<File
RelativePath="..\..\Objects\stringobject.c"
>
</File>
<File
RelativePath="..\..\Objects\structseq.c"
>
</File>
<File
RelativePath="..\..\Objects\tupleobject.c"
>
</File>
<File
RelativePath="..\..\Objects\typeobject.c"
>
</File>
<File
RelativePath="..\..\Objects\unicodectype.c"
>
</File>
<File
RelativePath="..\..\Objects\unicodeobject.c"
>
</File>
<File
RelativePath="..\..\Objects\unicodetype_db.h"
>
</File>
<File
RelativePath="..\..\Objects\weakrefobject.c"
>
</File>
</Filter>
<Filter
Name="Resource Files"
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
>
<File
RelativePath="..\..\PC\python_nt.rc"
>
</File>
</Filter>
<Filter
Name="Include"
>
<File
RelativePath="..\..\Include\abstract.h"
>
</File>
<File
RelativePath="..\..\Include\asdl.h"
>
</File>
<File
RelativePath="..\..\Include\ast.h"
>
</File>
<File
RelativePath="..\..\Include\bitset.h"
>
</File>
<File
RelativePath="..\..\Include\boolobject.h"
>
</File>
<File
RelativePath="..\..\Include\bytes_methods.h"
>
</File>
<File
RelativePath="..\..\Include\bytesobject.h"
>
</File>
<File
RelativePath="..\..\Include\cellobject.h"
>
</File>
<File
RelativePath="..\..\Include\ceval.h"
>
</File>
<File
RelativePath="..\..\Include\classobject.h"
>
</File>
<File
RelativePath="..\..\Include\cobject.h"
>
</File>
<File
RelativePath="..\..\Include\code.h"
>
</File>
<File
RelativePath="..\..\Include\codecs.h"
>
</File>
<File
RelativePath="..\..\Include\compile.h"
>
</File>
<File
RelativePath="..\..\Include\complexobject.h"
>
</File>
<File
RelativePath="..\..\Include\cStringIO.h"
>
</File>
<File
RelativePath="..\..\Include\datetime.h"
>
</File>
<File
RelativePath="..\..\Include\descrobject.h"
>
</File>
<File
RelativePath="..\..\Include\dictobject.h"
>
</File>
<File
RelativePath="..\..\Include\memoryobject.h"
>
</File>
<File
RelativePath="..\..\Include\enumobject.h"
>
</File>
<File
RelativePath="..\..\Include\errcode.h"
>
</File>
<File
RelativePath="..\..\Include\eval.h"
>
</File>
<File
RelativePath="..\..\Include\fileobject.h"
>
</File>
<File
RelativePath="..\..\Include\floatobject.h"
>
</File>
<File
RelativePath="..\..\Include\frameobject.h"
>
</File>
<File
RelativePath="..\..\Include\funcobject.h"
>
</File>
<File
RelativePath="..\..\Include\genobject.h"
>
</File>
<File
RelativePath="..\..\Include\graminit.h"
>
</File>
<File
RelativePath="..\..\Include\grammar.h"
>
</File>
<File
RelativePath="..\..\Include\import.h"
>
</File>
<File
RelativePath="..\..\Include\intobject.h"
>
</File>
<File
RelativePath="..\..\Include\intrcheck.h"
>
</File>
<File
RelativePath="..\..\Include\iterobject.h"
>
</File>
<File
RelativePath="..\..\Include\listobject.h"
>
</File>
<File
RelativePath="..\..\Include\longintrepr.h"
>
</File>
<File
RelativePath="..\..\Include\longobject.h"
>
</File>
<File
RelativePath="..\..\Include\marshal.h"
>
</File>
<File
RelativePath="..\..\Include\metagrammar.h"
>
</File>
<File
RelativePath="..\..\Include\methodobject.h"
>
</File>
<File
RelativePath="..\..\Include\modsupport.h"
>
</File>
<File
RelativePath="..\..\Include\moduleobject.h"
>
</File>
<File
RelativePath="..\..\Include\node.h"
>
</File>
<File
RelativePath="..\..\Include\object.h"
>
</File>
<File
RelativePath="..\..\Include\objimpl.h"
>
</File>
<File
RelativePath="..\..\Include\opcode.h"
>
</File>
<File
RelativePath="..\..\Include\osdefs.h"
>
</File>
<File
RelativePath="..\..\Include\parsetok.h"
>
</File>
<File
RelativePath="..\..\Include\patchlevel.h"
>
</File>
<File
RelativePath="..\..\Include\pgen.h"
>
</File>
<File
RelativePath="..\..\Include\pgenheaders.h"
>
</File>
<File
RelativePath="..\..\Include\py_curses.h"
>
</File>
<File
RelativePath="..\..\Include\pyarena.h"
>
</File>
<File
RelativePath="..\..\Include\pydebug.h"
>
</File>
<File
RelativePath="..\..\Include\pyerrors.h"
>
</File>
<File
RelativePath="..\..\Include\pyexpat.h"
>
</File>
<File
RelativePath="..\..\Include\pyfpe.h"
>
</File>
<File
RelativePath="..\..\Include\pygetopt.h"
>
</File>
<File
RelativePath="..\..\Include\pymactoolbox.h"
>
</File>
<File
RelativePath="..\..\Include\pymem.h"
>
</File>
<File
RelativePath="..\..\Include\pyport.h"
>
</File>
<File
RelativePath="..\..\Include\pystate.h"
>
</File>
<File
RelativePath="..\..\Include\pystrcmp.h"
>
</File>
<File
RelativePath="..\..\Include\pystrtod.h"
>
</File>
<File
RelativePath="..\..\Include\Python-ast.h"
>
</File>
<File
RelativePath="..\..\Include\Python.h"
>
</File>
<File
RelativePath="..\..\Include\pythonrun.h"
>
</File>
<File
RelativePath="..\..\Include\pythread.h"
>
</File>
<File
RelativePath="..\..\Include\rangeobject.h"
>
</File>
<File
RelativePath="..\..\Include\setobject.h"
>
</File>
<File
RelativePath="..\..\Include\sliceobject.h"
>
</File>
<File
RelativePath="..\..\Include\stringobject.h"
>
</File>
<File
RelativePath="..\..\Include\structmember.h"
>
</File>
<File
RelativePath="..\..\Include\structseq.h"
>
</File>
<File
RelativePath="..\..\Include\symtable.h"
>
</File>
<File
RelativePath="..\..\Include\sysmodule.h"
>
</File>
<File
RelativePath="..\..\Include\timefuncs.h"
>
</File>
<File
RelativePath="..\..\Include\token.h"
>
</File>
<File
RelativePath="..\..\Include\traceback.h"
>
</File>
<File
RelativePath="..\..\Include\tupleobject.h"
>
</File>
<File
RelativePath="..\..\Include\ucnhash.h"
>
</File>
<File
RelativePath="..\..\Include\unicodeobject.h"
>
</File>
<File
RelativePath="..\..\Include\weakrefobject.h"
>
</File>
</Filter>
<Filter
Name="PC"
>
<File
RelativePath="..\..\PC\_subprocess.c"
>
</File>
<File
RelativePath="..\..\PC\_winreg.c"
>
</File>
<File
RelativePath="..\..\PC\config.c"
>
</File>
<File
RelativePath="..\..\PC\dl_nt.c"
>
</File>
<File
RelativePath="..\..\PC\errmap.h"
>
</File>
<File
RelativePath="..\getbuildinfo.c"
>
</File>
<File
RelativePath="..\..\PC\getpathp.c"
>
</File>
<File
RelativePath="..\..\PC\import_nt.c"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
<FileConfiguration
Name="Debug|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
<FileConfiguration
Name="PGInstrument|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
<FileConfiguration
Name="PGInstrument|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
<FileConfiguration
Name="PGUpdate|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
<FileConfiguration
Name="PGUpdate|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Python"
/>
</FileConfiguration>
</File>
<File
RelativePath="..\..\PC\msvcrtmodule.c"
>
</File>
<File
RelativePath="..\..\PC\pyconfig.h"
>
</File>
</Filter>
<Filter
Name="Modules"
>
<File
RelativePath="..\..\Modules\_bisectmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_codecsmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_collectionsmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_csv.c"
>
</File>
<File
RelativePath="..\..\Modules\_fileio.c"
>
</File>
<File
RelativePath="..\..\Modules\_functoolsmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_heapqmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_localemodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_lsprof.c"
>
</File>
<File
RelativePath="..\..\Modules\_randommodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_sre.c"
>
</File>
<File
RelativePath="..\..\Modules\_struct.c"
>
</File>
<File
RelativePath="..\..\Modules\_typesmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\_weakref.c"
>
</File>
<File
RelativePath="..\..\Modules\arraymodule.c"
>
</File>
<File
RelativePath="..\..\Modules\atexitmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\audioop.c"
>
</File>
<File
RelativePath="..\..\Modules\binascii.c"
>
</File>
<File
RelativePath="..\..\Modules\cmathmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\cStringIO.c"
>
</File>
<File
RelativePath="..\..\Modules\datetimemodule.c"
>
</File>
<File
RelativePath="..\..\Modules\errnomodule.c"
>
</File>
<File
RelativePath="..\..\Modules\gcmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\itertoolsmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\main.c"
>
</File>
<File
RelativePath="..\..\Modules\mathmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\md5module.c"
>
</File>
<File
RelativePath="..\..\Modules\mmapmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\operator.c"
>
</File>
<File
RelativePath="..\..\Modules\parsermodule.c"
>
</File>
<File
RelativePath="..\..\Modules\posixmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\rotatingtree.c"
>
</File>
<File
RelativePath="..\..\Modules\rotatingtree.h"
>
</File>
<File
RelativePath="..\..\Modules\sha1module.c"
>
</File>
<File
RelativePath="..\..\Modules\sha256module.c"
>
</File>
<File
RelativePath="..\..\Modules\sha512module.c"
>
</File>
<File
RelativePath="..\..\Modules\signalmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\symtablemodule.c"
>
</File>
<File
RelativePath="..\..\Modules\threadmodule.c"
>
</File>
<File
RelativePath="..\..\Modules\timemodule.c"
>
</File>
<File
RelativePath="..\..\Modules\xxsubtype.c"
>
</File>
<File
RelativePath="..\..\Modules\yuv.h"
>
</File>
<File
RelativePath="..\..\Modules\yuvconvert.c"
>
</File>
<File
RelativePath="..\..\Modules\zipimport.c"
>
</File>
<File
RelativePath="..\..\Modules\zlibmodule.c"
>
<FileConfiguration
Name="Debug|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
<FileConfiguration
Name="Debug|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
<FileConfiguration
Name="PGInstrument|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
<FileConfiguration
Name="PGInstrument|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
<FileConfiguration
Name="PGUpdate|Win32"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
<FileConfiguration
Name="PGUpdate|x64"
>
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\Modules\zlib"
/>
</FileConfiguration>
</File>
<Filter
Name="zlib"
>
<File
RelativePath="..\..\Modules\zlib\adler32.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\compress.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\crc32.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\crc32.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\deflate.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\deflate.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\gzio.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\infback.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\inffast.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\inffast.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\inffixed.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\inflate.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\inflate.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\inftrees.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\inftrees.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\trees.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\trees.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\uncompr.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\zconf.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\zconf.in.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\zlib.h"
>
</File>
<File
RelativePath="..\..\Modules\zlib\zutil.c"
>
</File>
<File
RelativePath="..\..\Modules\zlib\zutil.h"
>
</File>
</Filter>
<Filter
Name="cjkcodecs"
>
<File
RelativePath="..\..\Modules\cjkcodecs\_codecs_cn.c"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\_codecs_hk.c"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\_codecs_iso2022.c"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\_codecs_jp.c"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\_codecs_kr.c"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\_codecs_tw.c"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\alg_jisx0201.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\cjkcodecs.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\emu_jisx0213_2000.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\mappings_cn.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\mappings_hk.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\mappings_jisx0213_pair.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\mappings_jp.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\mappings_kr.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\mappings_tw.h"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\multibytecodec.c"
>
</File>
<File
RelativePath="..\..\Modules\cjkcodecs\multibytecodec.h"
>
</File>
</Filter>
</Filter>
<Filter
Name="Parser"
>
<File
RelativePath="..\..\Parser\acceler.c"
>
</File>
<File
RelativePath="..\..\Parser\bitset.c"
>
</File>
<File
RelativePath="..\..\Parser\firstsets.c"
>
</File>
<File
RelativePath="..\..\Parser\grammar.c"
>
</File>
<File
RelativePath="..\..\Parser\grammar1.c"
>
</File>
<File
RelativePath="..\..\Parser\listnode.c"
>
</File>
<File
RelativePath="..\..\Parser\metagrammar.c"
>
</File>
<File
RelativePath="..\..\Parser\myreadline.c"
>
</File>
<File
RelativePath="..\..\Parser\node.c"
>
</File>
<File
RelativePath="..\..\Parser\parser.c"
>
</File>
<File
RelativePath="..\..\Parser\parser.h"
>
</File>
<File
RelativePath="..\..\Parser\parsetok.c"
>
</File>
<File
RelativePath="..\..\Parser\tokenizer.c"
>
</File>
<File
RelativePath="..\..\Parser\tokenizer.h"
>
</File>
</Filter>
</Files>
<Globals>
</Globals>
</VisualStudioProject>