New project files, with sliceobject.c added.
diff --git a/PC/python.wpj b/PC/python.wpj
index 2810158..88d97e7 100644
--- a/PC/python.wpj
+++ b/PC/python.wpj
@@ -42,22 +42,22 @@
 WFileName

 20

 wat_os2\pyth_os2.tgt

-12

+38

 74

 11

 VComponent

 12

 WRect

-128

-85

+140

+102

 5632

-4113

+4096

 0

 0

 13

 WFileName

 20

 wat_dos\pyth_dos.tgt

-9

+40

 9

 11

diff --git a/PC/vc15_lib/python.mak b/PC/vc15_lib/python.mak
index af25cede..95f8a54 100644
--- a/PC/vc15_lib/python.mak
+++ b/PC/vc15_lib/python.mak
@@ -10,7 +10,7 @@
 R_RCDEFINES = -dNDEBUG

 ORIGIN = MSVC

 ORIGIN_VER = 1.00

-PROJPATH = N:\PYTHON\PYTHON-1.4B2\PC\VC15_LIB\

+PROJPATH = O:\PYTH14B2\PC\VC15_LIB\

 USEMFC = 0

 CC = cl

 CPP = cl

@@ -117,2463 +117,2564 @@
 		COMPLEXO.SBR \

 		CMATHMOD.SBR \

 		ERRNOMOD.SBR \

-		OPERATOR.SBR

+		OPERATOR.SBR \

+		SLICEOBJ.SBR

 

 

-ABSTRACT_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+ABSTRACT_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-ACCELER_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\grammar.h \

-	n:\python\python-1.4b2\pc\src\bitset.h \

-	n:\python\python-1.4b2\pc\src\node.h \

-	n:\python\python-1.4b2\pc\src\token.h \

-	n:\python\python-1.4b2\pc\src\parser.h

+ACCELER_DEP = o:\pyth14b2\pc\src\pgenhead.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\grammar.h \

+	o:\pyth14b2\pc\src\bitset.h \

+	o:\pyth14b2\pc\src\node.h \

+	o:\pyth14b2\pc\src\token.h \

+	o:\pyth14b2\pc\src\parser.h

 

 

-ACCESSOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\structme.h

+ACCESSOB_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\structme.h

 

 

-ARRAYMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+ARRAYMOD_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-AUDIOOP_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\mymath.h

+AUDIOOP_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\mymath.h

 

 

-BINASCII_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+BINASCII_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-BLTINMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\node.h \

-	n:\python\python-1.4b2\pc\src\graminit.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\eval.h

+BLTINMOD_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\node.h \

+	o:\pyth14b2\pc\src\graminit.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\eval.h

 

 

-CEVAL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\frameobj.h \

-	n:\python\python-1.4b2\pc\src\eval.h \

-	n:\python\python-1.4b2\pc\src\opcode.h \

-	n:\python\python-1.4b2\pc\src\graminit.h

+CEVAL_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\frameobj.h \

+	o:\pyth14b2\pc\src\eval.h \

+	o:\pyth14b2\pc\src\opcode.h \

+	o:\pyth14b2\pc\src\graminit.h

 

 

-CGENSUPP_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\cgensupp.h

+CGENSUPP_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\cgensupp.h

 

 

-CLASSOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\structme.h

+CLASSOBJ_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\structme.h

 

 

-COMPILE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\node.h \

-	n:\python\python-1.4b2\pc\src\token.h \

-	n:\python\python-1.4b2\pc\src\graminit.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\opcode.h \

-	n:\python\python-1.4b2\pc\src\structme.h

+COMPILE_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\node.h \

+	o:\pyth14b2\pc\src\token.h \

+	o:\pyth14b2\pc\src\graminit.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\opcode.h \

+	o:\pyth14b2\pc\src\structme.h

 

 

-CONFIG_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+CONFIG_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-ENVIRONM_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+ENVIRONM_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-ERRORS_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+ERRORS_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-FILEOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\structme.h

+FILEOBJE_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\structme.h

 

 

-FLOATOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\mymath.h

+FLOATOBJ_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\mymath.h

 

 

-FRAMEOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\frameobj.h \

-	n:\python\python-1.4b2\pc\src\opcode.h \

-	n:\python\python-1.4b2\pc\src\structme.h

+FRAMEOBJ_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\frameobj.h \

+	o:\pyth14b2\pc\src\opcode.h \

+	o:\pyth14b2\pc\src\structme.h

 

 

-FROZEN_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+FROZEN_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-FUNCOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\structme.h

+FUNCOBJE_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\structme.h

 

 

-GETARGS_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+GETARGS_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-GETCOMPI_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+GETCOMPI_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-GETCOPYR_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+GETCOPYR_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-GETMTIME_DEP = n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\rename2.h

+GETMTIME_DEP = o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\rename2.h

 

 

-GETPATH_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\osdefs.h

+GETPATH_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\osdefs.h

 

 

-GETPLATF_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+GETPLATF_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-GETVERSI_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\patchlev.h

+GETVERSI_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\patchlev.h

 

 

-GRAMINIT_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\grammar.h \

-	n:\python\python-1.4b2\pc\src\bitset.h

+GRAMINIT_DEP = o:\pyth14b2\pc\src\pgenhead.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\grammar.h \

+	o:\pyth14b2\pc\src\bitset.h

 

 

-GRAMMAR1_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\grammar.h \

-	n:\python\python-1.4b2\pc\src\bitset.h \

-	n:\python\python-1.4b2\pc\src\token.h

+GRAMMAR1_DEP = o:\pyth14b2\pc\src\pgenhead.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\grammar.h \

+	o:\pyth14b2\pc\src\bitset.h \

+	o:\pyth14b2\pc\src\token.h

 

 

-IMAGEOP_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+IMAGEOP_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-IMPORT_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\node.h \

-	n:\python\python-1.4b2\pc\src\token.h \

-	n:\python\python-1.4b2\pc\src\graminit.h \

-	n:\python\python-1.4b2\pc\src\errcode.h \

-	n:\python\python-1.4b2\pc\src\marshal.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\eval.h \

-	n:\python\python-1.4b2\pc\src\osdefs.h \

-	n:\python\python-1.4b2\pc\src\importdl.h

+IMPORT_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\node.h \

+	o:\pyth14b2\pc\src\token.h \

+	o:\pyth14b2\pc\src\graminit.h \

+	o:\pyth14b2\pc\src\errcode.h \

+	o:\pyth14b2\pc\src\marshal.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\eval.h \

+	o:\pyth14b2\pc\src\osdefs.h \

+	o:\pyth14b2\pc\src\importdl.h

 

 

-IMPORTDL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\osdefs.h \

-	n:\python\python-1.4b2\pc\src\importdl.h

+IMPORTDL_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\osdefs.h \

+	o:\pyth14b2\pc\src\importdl.h

 

 

-INTOBJEC_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+INTOBJEC_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-LISTOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+LISTOBJE_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-LONGOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\longintr.h \

-	n:\python\python-1.4b2\pc\src\mymath.h

+LONGOBJE_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\longintr.h \

+	o:\pyth14b2\pc\src\mymath.h

 

 

-MAPPINGO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+MAPPINGO_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

+

+

+MARSHAL_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\longintr.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\marshal.h

 

 

-MARSHAL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\longintr.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\marshal.h

+MATHMODU_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\mymath.h

 

 

-MATHMODU_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\mymath.h

+MD5C_DEP = o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\md5.h

 

 

-MD5C_DEP = n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\md5.h

+MD5MODUL_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\md5.h

 

 

-MD5MODUL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\md5.h

+METHODOB_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\token.h

 

 

-METHODOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\token.h

+MODSUPPO_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-MODSUPPO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+MODULEOB_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-MODULEOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+MYREADLI_DEP = o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\intrchec.h

 

 

-MYREADLI_DEP = n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h

+MYSTRTOU_DEP = o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\rename2.h

 

 

-MYSTRTOU_DEP = n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\rename2.h

+NEWMODUL_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\compile.h

 

 

-NEWMODUL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\compile.h

+NODE_DEP = o:\pyth14b2\pc\src\pgenhead.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\node.h

 

 

-NODE_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\node.h

+OBJECT_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-OBJECT_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+PARSER_DEP = o:\pyth14b2\pc\src\pgenhead.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\token.h \

+	o:\pyth14b2\pc\src\grammar.h \

+	o:\pyth14b2\pc\src\bitset.h \

+	o:\pyth14b2\pc\src\node.h \

+	o:\pyth14b2\pc\src\parser.h \

+	o:\pyth14b2\pc\src\errcode.h

 

 

-PARSER_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\token.h \

-	n:\python\python-1.4b2\pc\src\grammar.h \

-	n:\python\python-1.4b2\pc\src\bitset.h \

-	n:\python\python-1.4b2\pc\src\node.h \

-	n:\python\python-1.4b2\pc\src\parser.h \

-	n:\python\python-1.4b2\pc\src\errcode.h

+PARSETOK_DEP = o:\pyth14b2\pc\src\pgenhead.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\tokenize.h \

+	o:\pyth14b2\pc\src\token.h \

+	o:\pyth14b2\pc\src\node.h \

+	o:\pyth14b2\pc\src\grammar.h \

+	o:\pyth14b2\pc\src\bitset.h \

+	o:\pyth14b2\pc\src\parser.h \

+	o:\pyth14b2\pc\src\parsetok.h \

+	o:\pyth14b2\pc\src\errcode.h

 

 

-PARSETOK_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\tokenize.h \

-	n:\python\python-1.4b2\pc\src\token.h \

-	n:\python\python-1.4b2\pc\src\node.h \

-	n:\python\python-1.4b2\pc\src\grammar.h \

-	n:\python\python-1.4b2\pc\src\bitset.h \

-	n:\python\python-1.4b2\pc\src\parser.h \

-	n:\python\python-1.4b2\pc\src\parsetok.h \

-	n:\python\python-1.4b2\pc\src\errcode.h

+POSIXMOD_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\mytime.h

 

 

-POSIXMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\mytime.h

+PYTHONRU_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\grammar.h \

+	o:\pyth14b2\pc\src\bitset.h \

+	o:\pyth14b2\pc\src\node.h \

+	o:\pyth14b2\pc\src\parsetok.h \

+	o:\pyth14b2\pc\src\graminit.h \

+	o:\pyth14b2\pc\src\errcode.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\eval.h \

+	o:\pyth14b2\pc\src\marshal.h

 

 

-PYTHONRU_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\grammar.h \

-	n:\python\python-1.4b2\pc\src\bitset.h \

-	n:\python\python-1.4b2\pc\src\node.h \

-	n:\python\python-1.4b2\pc\src\parsetok.h \

-	n:\python\python-1.4b2\pc\src\graminit.h \

-	n:\python\python-1.4b2\pc\src\errcode.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\eval.h \

-	n:\python\python-1.4b2\pc\src\marshal.h

+RANGEOBJ_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-RANGEOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+REGEXMOD_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\regexpr.h

 

 

-REGEXMOD_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\regexpr.h

+REGEXPR_DEP = o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\regexpr.h \

+	o:\pyth14b2\pc\src\config.h

 

 

-REGEXPR_DEP = n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\regexpr.h \

-	n:\python\python-1.4b2\pc\src\config.h

+RGBIMGMO_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-RGBIMGMO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+ROTORMOD_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\mymath.h

 

 

-ROTORMOD_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\mymath.h

+SIGNALMO_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-SIGNALMO_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+SOUNDEX_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-SOUNDEX_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+STRINGOB_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-STRINGOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+STROPMOD_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-STROPMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+STRUCTME_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\structme.h

 

 

-STRUCTME_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\structme.h

+STRUCTMO_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-STRUCTMO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+SYSMODUL_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\osdefs.h

 

 

-SYSMODUL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\osdefs.h

+TIMEMODU_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\myselect.h \

+	o:\pyth14b2\pc\src\mytime.h

 

 

-TIMEMODU_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\myselect.h \

-	n:\python\python-1.4b2\pc\src\mytime.h

+TOKENIZE_DEP = o:\pyth14b2\pc\src\pgenhead.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\tokenize.h \

+	o:\pyth14b2\pc\src\token.h \

+	o:\pyth14b2\pc\src\errcode.h

 

 

-TOKENIZE_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\tokenize.h \

-	n:\python\python-1.4b2\pc\src\token.h \

-	n:\python\python-1.4b2\pc\src\errcode.h

+TRACEBAC_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\compile.h \

+	o:\pyth14b2\pc\src\frameobj.h \

+	o:\pyth14b2\pc\src\structme.h \

+	o:\pyth14b2\pc\src\osdefs.h

 

 

-TRACEBAC_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\compile.h \

-	n:\python\python-1.4b2\pc\src\frameobj.h \

-	n:\python\python-1.4b2\pc\src\structme.h \

-	n:\python\python-1.4b2\pc\src\osdefs.h

+TUPLEOBJ_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-TUPLEOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+TYPEOBJE_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-TYPEOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+YUVCONVE_DEP = o:\pyth14b2\pc\src\yuv.h

 

 

-YUVCONVE_DEP = n:\python\python-1.4b2\pc\src\yuv.h

+COBJECT_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-COBJECT_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+COMPLEXO_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\mymath.h

 

 

-COMPLEXO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\mymath.h

+CMATHMOD_DEP = o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h \

+	o:\pyth14b2\pc\src\mymath.h

 

 

-CMATHMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h \

-	n:\python\python-1.4b2\pc\src\mymath.h

+ERRNOMOD_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-ERRNOMOD_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+OPERATOR_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

-OPERATOR_DEP = n:\python\python-1.4b2\pc\src\python.h \

-	n:\python\python-1.4b2\pc\src\allobjec.h \

-	n:\python\python-1.4b2\pc\src\config.h \

-	n:\python\python-1.4b2\pc\src\myproto.h \

-	n:\python\python-1.4b2\pc\src\rename2.h \

-	n:\python\python-1.4b2\pc\src\object.h \

-	n:\python\python-1.4b2\pc\src\objimpl.h \

-	n:\python\python-1.4b2\pc\src\pydebug.h \

-	n:\python\python-1.4b2\pc\src\accessob.h \

-	n:\python\python-1.4b2\pc\src\intobjec.h \

-	n:\python\python-1.4b2\pc\src\longobje.h \

-	n:\python\python-1.4b2\pc\src\floatobj.h \

-	n:\python\python-1.4b2\pc\src\complexo.h \

-	n:\python\python-1.4b2\pc\src\rangeobj.h \

-	n:\python\python-1.4b2\pc\src\stringob.h \

-	n:\python\python-1.4b2\pc\src\tupleobj.h \

-	n:\python\python-1.4b2\pc\src\listobje.h \

-	n:\python\python-1.4b2\pc\src\mappingo.h \

-	n:\python\python-1.4b2\pc\src\methodob.h \

-	n:\python\python-1.4b2\pc\src\moduleob.h \

-	n:\python\python-1.4b2\pc\src\funcobje.h \

-	n:\python\python-1.4b2\pc\src\classobj.h \

-	n:\python\python-1.4b2\pc\src\thread.h \

-	n:\python\python-1.4b2\pc\src\fileobje.h \

-	n:\python\python-1.4b2\pc\src\cobject.h \

-	n:\python\python-1.4b2\pc\src\tracebac.h \

-	n:\python\python-1.4b2\pc\src\errors.h \

-	n:\python\python-1.4b2\pc\src\mymalloc.h \

-	n:\python\python-1.4b2\pc\src\modsuppo.h \

-	n:\python\python-1.4b2\pc\src\ceval.h \

-	n:\python\python-1.4b2\pc\src\pythonru.h \

-	n:\python\python-1.4b2\pc\src\sysmodul.h \

-	n:\python\python-1.4b2\pc\src\intrchec.h \

-	n:\python\python-1.4b2\pc\src\import.h \

-	n:\python\python-1.4b2\pc\src\bltinmod.h \

-	n:\python\python-1.4b2\pc\src\abstract.h

+SLICEOBJ_DEP = o:\pyth14b2\pc\src\python.h \

+	o:\pyth14b2\pc\src\allobjec.h \

+	o:\pyth14b2\pc\src\config.h \

+	o:\pyth14b2\pc\src\myproto.h \

+	o:\pyth14b2\pc\src\rename2.h \

+	o:\pyth14b2\pc\src\object.h \

+	o:\pyth14b2\pc\src\objimpl.h \

+	o:\pyth14b2\pc\src\pydebug.h \

+	o:\pyth14b2\pc\src\accessob.h \

+	o:\pyth14b2\pc\src\intobjec.h \

+	o:\pyth14b2\pc\src\longobje.h \

+	o:\pyth14b2\pc\src\floatobj.h \

+	o:\pyth14b2\pc\src\complexo.h \

+	o:\pyth14b2\pc\src\rangeobj.h \

+	o:\pyth14b2\pc\src\stringob.h \

+	o:\pyth14b2\pc\src\tupleobj.h \

+	o:\pyth14b2\pc\src\listobje.h \

+	o:\pyth14b2\pc\src\mappingo.h \

+	o:\pyth14b2\pc\src\methodob.h \

+	o:\pyth14b2\pc\src\moduleob.h \

+	o:\pyth14b2\pc\src\funcobje.h \

+	o:\pyth14b2\pc\src\classobj.h \

+	o:\pyth14b2\pc\src\thread.h \

+	o:\pyth14b2\pc\src\fileobje.h \

+	o:\pyth14b2\pc\src\cobject.h \

+	o:\pyth14b2\pc\src\tracebac.h \

+	o:\pyth14b2\pc\src\sliceobj.h \

+	o:\pyth14b2\pc\src\errors.h \

+	o:\pyth14b2\pc\src\mymalloc.h \

+	o:\pyth14b2\pc\src\modsuppo.h \

+	o:\pyth14b2\pc\src\ceval.h \

+	o:\pyth14b2\pc\src\pythonru.h \

+	o:\pyth14b2\pc\src\sysmodul.h \

+	o:\pyth14b2\pc\src\intrchec.h \

+	o:\pyth14b2\pc\src\import.h \

+	o:\pyth14b2\pc\src\bltinmod.h \

+	o:\pyth14b2\pc\src\abstract.h

 

 

 all:	$(PROJ).LIB $(PROJ).BSC

@@ -2800,6 +2901,9 @@
 OPERATOR.OBJ:	..\SRC\OPERATOR.C $(OPERATOR_DEP)

 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\OPERATOR.C

 

+SLICEOBJ.OBJ:	..\SRC\SLICEOBJ.C $(SLICEOBJ_DEP)

+	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SLICEOBJ.C

+

 $(PROJ).LIB::	ABSTRACT.OBJ ACCELER.OBJ ACCESSOB.OBJ ARRAYMOD.OBJ AUDIOOP.OBJ BINASCII.OBJ \

 	BLTINMOD.OBJ CEVAL.OBJ CGENSUPP.OBJ CLASSOBJ.OBJ COMPILE.OBJ CONFIG.OBJ ENVIRONM.OBJ \

 	ERRORS.OBJ FILEOBJE.OBJ FLOATOBJ.OBJ FRAMEOBJ.OBJ FROZEN.OBJ FUNCOBJE.OBJ GETARGS.OBJ \

@@ -2810,7 +2914,7 @@
 	PARSETOK.OBJ POSIXMOD.OBJ PYTHONRU.OBJ RANGEOBJ.OBJ REGEXMOD.OBJ REGEXPR.OBJ RGBIMGMO.OBJ \

 	ROTORMOD.OBJ SIGNALMO.OBJ SOUNDEX.OBJ STRINGOB.OBJ STROPMOD.OBJ STRUCTME.OBJ STRUCTMO.OBJ \

 	SYSMODUL.OBJ TIMEMODU.OBJ TOKENIZE.OBJ TRACEBAC.OBJ TUPLEOBJ.OBJ TYPEOBJE.OBJ YUVCONVE.OBJ \

-	COBJECT.OBJ COMPLEXO.OBJ CMATHMOD.OBJ ERRNOMOD.OBJ OPERATOR.OBJ $(OBJS_EXT)

+	COBJECT.OBJ COMPLEXO.OBJ CMATHMOD.OBJ ERRNOMOD.OBJ OPERATOR.OBJ SLICEOBJ.OBJ $(OBJS_EXT)

 	echo >NUL @<<$(PROJ).CRF

 $@ /PAGESIZE:64

 y

@@ -2888,6 +2992,7 @@
 +CMATHMOD.OBJ &

 +ERRNOMOD.OBJ &

 +OPERATOR.OBJ &

++SLICEOBJ.OBJ &

 ;

 <<

 	if exist $@ del $@

diff --git a/PC/vc15_lib/python.wsp b/PC/vc15_lib/python.wsp
index 57fb6c9..c4f093e 100644
--- a/PC/vc15_lib/python.wsp
+++ b/PC/vc15_lib/python.wsp
Binary files differ
diff --git a/PC/vc40.mak b/PC/vc40.mak
index edcc5bb..ce8a45e 100644
--- a/PC/vc40.mak
+++ b/PC/vc40.mak
@@ -193,84 +193,85 @@
 

 CLEAN : 

 	-@erase ".\vc40_dll\Release\py14an.dll"

+	-@erase ".\vc40_dll\Release\thread.obj"

 	-@erase ".\vc40_dll\Release\classobject.obj"

-	-@erase ".\vc40_dll\Release\stropmodule.obj"

-	-@erase ".\vc40_dll\Release\getargs.obj"

 	-@erase ".\vc40_dll\Release\bltinmodule.obj"

-	-@erase ".\vc40_dll\Release\structmember.obj"

-	-@erase ".\vc40_dll\Release\rangeobject.obj"

-	-@erase ".\vc40_dll\Release\socketmodule.obj"

-	-@erase ".\vc40_dll\Release\audioop.obj"

-	-@erase ".\vc40_dll\Release\frameobject.obj"

-	-@erase ".\vc40_dll\Release\regexmodule.obj"

-	-@erase ".\vc40_dll\Release\funcobject.obj"

-	-@erase ".\vc40_dll\Release\getmtime.obj"

-	-@erase ".\vc40_dll\Release\operator.obj"

-	-@erase ".\vc40_dll\Release\stringobject.obj"

-	-@erase ".\vc40_dll\Release\posixmodule.obj"

-	-@erase ".\vc40_dll\Release\myreadline.obj"

-	-@erase ".\vc40_dll\Release\cmathmodule.obj"

-	-@erase ".\vc40_dll\Release\getcopyright.obj"

-	-@erase ".\vc40_dll\Release\cgensupport.obj"

-	-@erase ".\vc40_dll\Release\parsetok.obj"

-	-@erase ".\vc40_dll\Release\newmodule.obj"

-	-@erase ".\vc40_dll\Release\mappingobject.obj"

-	-@erase ".\vc40_dll\Release\acceler.obj"

-	-@erase ".\vc40_dll\Release\modsupport.obj"

-	-@erase ".\vc40_dll\Release\threadmodule.obj"

-	-@erase ".\vc40_dll\Release\soundex.obj"

-	-@erase ".\vc40_dll\Release\parser.obj"

-	-@erase ".\vc40_dll\Release\mathmodule.obj"

+	-@erase ".\vc40_dll\Release\object.obj"

+	-@erase ".\vc40_dll\Release\getargs.obj"

+	-@erase ".\vc40_dll\Release\getcompiler.obj"

+	-@erase ".\vc40_dll\Release\graminit.obj"

 	-@erase ".\vc40_dll\Release\importdl.obj"

-	-@erase ".\vc40_dll\Release\methodobject.obj"

-	-@erase ".\vc40_dll\Release\getpath.obj"

+	-@erase ".\vc40_dll\Release\structmodule.obj"

 	-@erase ".\vc40_dll\Release\mystrtoul.obj"

-	-@erase ".\vc40_dll\Release\rgbimgmodule.obj"

-	-@erase ".\vc40_dll\Release\rotormodule.obj"

-	-@erase ".\vc40_dll\Release\binascii.obj"

-	-@erase ".\vc40_dll\Release\node.obj"

-	-@erase ".\vc40_dll\Release\config.obj"

-	-@erase ".\vc40_dll\Release\selectmodule.obj"

-	-@erase ".\vc40_dll\Release\signalmodule.obj"

-	-@erase ".\vc40_dll\Release\marshal.obj"

+	-@erase ".\vc40_dll\Release\errnomodule.obj"

+	-@erase ".\vc40_dll\Release\frameobject.obj"

 	-@erase ".\vc40_dll\Release\fileobject.obj"

 	-@erase ".\vc40_dll\Release\longobject.obj"

-	-@erase ".\vc40_dll\Release\accessobject.obj"

-	-@erase ".\vc40_dll\Release\ceval.obj"

-	-@erase ".\vc40_dll\Release\compile.obj"

-	-@erase ".\vc40_dll\Release\thread.obj"

+	-@erase ".\vc40_dll\Release\regexmodule.obj"

+	-@erase ".\vc40_dll\Release\environment.obj"

+	-@erase ".\vc40_dll\Release\audioop.obj"

+	-@erase ".\vc40_dll\Release\floatobject.obj"

 	-@erase ".\vc40_dll\Release\cobject.obj"

-	-@erase ".\vc40_dll\Release\getcompiler.obj"

+	-@erase ".\vc40_dll\Release\frozen.obj"

+	-@erase ".\vc40_dll\Release\moduleobject.obj"

+	-@erase ".\vc40_dll\Release\node.obj"

+	-@erase ".\vc40_dll\Release\cmathmodule.obj"

 	-@erase ".\vc40_dll\Release\grammar1.obj"

 	-@erase ".\vc40_dll\Release\abstract.obj"

-	-@erase ".\vc40_dll\Release\object.obj"

-	-@erase ".\vc40_dll\Release\errnomodule.obj"

-	-@erase ".\vc40_dll\Release\timemodule.obj"

 	-@erase ".\vc40_dll\Release\complexobject.obj"

-	-@erase ".\vc40_dll\Release\environment.obj"

-	-@erase ".\vc40_dll\Release\floatobject.obj"

-	-@erase ".\vc40_dll\Release\getplatform.obj"

-	-@erase ".\vc40_dll\Release\tokenizer.obj"

-	-@erase ".\vc40_dll\Release\intobject.obj"

-	-@erase ".\vc40_dll\Release\import.obj"

-	-@erase ".\vc40_dll\Release\frozen.obj"

-	-@erase ".\vc40_dll\Release\structmodule.obj"

-	-@erase ".\vc40_dll\Release\errors.obj"

 	-@erase ".\vc40_dll\Release\arraymodule.obj"

+	-@erase ".\vc40_dll\Release\selectmodule.obj"

+	-@erase ".\vc40_dll\Release\structmember.obj"

+	-@erase ".\vc40_dll\Release\acceler.obj"

+	-@erase ".\vc40_dll\Release\timemodule.obj"

+	-@erase ".\vc40_dll\Release\accessobject.obj"

+	-@erase ".\vc40_dll\Release\socketmodule.obj"

+	-@erase ".\vc40_dll\Release\soundex.obj"

+	-@erase ".\vc40_dll\Release\tokenizer.obj"

+	-@erase ".\vc40_dll\Release\stringobject.obj"

+	-@erase ".\vc40_dll\Release\stropmodule.obj"

+	-@erase ".\vc40_dll\Release\intobject.obj"

+	-@erase ".\vc40_dll\Release\parsetok.obj"

+	-@erase ".\vc40_dll\Release\getcopyright.obj"

+	-@erase ".\vc40_dll\Release\getpath.obj"

+	-@erase ".\vc40_dll\Release\listobject.obj"

+	-@erase ".\vc40_dll\Release\typeobject.obj"

+	-@erase ".\vc40_dll\Release\rangeobject.obj"

 	-@erase ".\vc40_dll\Release\md5module.obj"

 	-@erase ".\vc40_dll\Release\traceback.obj"

 	-@erase ".\vc40_dll\Release\sysmodule.obj"

-	-@erase ".\vc40_dll\Release\listobject.obj"

-	-@erase ".\vc40_dll\Release\typeobject.obj"

-	-@erase ".\vc40_dll\Release\graminit.obj"

-	-@erase ".\vc40_dll\Release\imageop.obj"

-	-@erase ".\vc40_dll\Release\regexpr.obj"

-	-@erase ".\vc40_dll\Release\pythonrun.obj"

-	-@erase ".\vc40_dll\Release\md5c.obj"

-	-@erase ".\vc40_dll\Release\tupleobject.obj"

+	-@erase ".\vc40_dll\Release\marshal.obj"

 	-@erase ".\vc40_dll\Release\yuvconvert.obj"

+	-@erase ".\vc40_dll\Release\pythonrun.obj"

 	-@erase ".\vc40_dll\Release\getversion.obj"

-	-@erase ".\vc40_dll\Release\moduleobject.obj"

+	-@erase ".\vc40_dll\Release\threadmodule.obj"

+	-@erase ".\vc40_dll\Release\mathmodule.obj"

+	-@erase ".\vc40_dll\Release\ceval.obj"

+	-@erase ".\vc40_dll\Release\compile.obj"

+	-@erase ".\vc40_dll\Release\import.obj"

+	-@erase ".\vc40_dll\Release\md5c.obj"

+	-@erase ".\vc40_dll\Release\posixmodule.obj"

+	-@erase ".\vc40_dll\Release\errors.obj"

+	-@erase ".\vc40_dll\Release\binascii.obj"

+	-@erase ".\vc40_dll\Release\cgensupport.obj"

+	-@erase ".\vc40_dll\Release\methodobject.obj"

+	-@erase ".\vc40_dll\Release\rgbimgmodule.obj"

+	-@erase ".\vc40_dll\Release\getplatform.obj"

+	-@erase ".\vc40_dll\Release\signalmodule.obj"

+	-@erase ".\vc40_dll\Release\parser.obj"

+	-@erase ".\vc40_dll\Release\getmtime.obj"

+	-@erase ".\vc40_dll\Release\funcobject.obj"

+	-@erase ".\vc40_dll\Release\operator.obj"

+	-@erase ".\vc40_dll\Release\mappingobject.obj"

+	-@erase ".\vc40_dll\Release\myreadline.obj"

+	-@erase ".\vc40_dll\Release\config.obj"

+	-@erase ".\vc40_dll\Release\imageop.obj"

+	-@erase ".\vc40_dll\Release\rotormodule.obj"

+	-@erase ".\vc40_dll\Release\regexpr.obj"

+	-@erase ".\vc40_dll\Release\tupleobject.obj"

+	-@erase ".\vc40_dll\Release\modsupport.obj"

+	-@erase ".\vc40_dll\Release\newmodule.obj"

+	-@erase ".\vc40_dll\Release\sliceobject.obj"

 	-@erase ".\vc40_dll\Release\py14an.lib"

 	-@erase ".\vc40_dll\Release\py14an.exp"

 

@@ -327,84 +328,85 @@
 DEF_FILE= \

 	".\PC\python.def"

 LINK32_OBJS= \

-	"$(INTDIR)/classobject.obj" \

-	"$(INTDIR)/stropmodule.obj" \

-	"$(INTDIR)/getargs.obj" \

-	"$(INTDIR)/bltinmodule.obj" \

-	"$(INTDIR)/structmember.obj" \

-	"$(INTDIR)/rangeobject.obj" \

-	"$(INTDIR)/socketmodule.obj" \

-	"$(INTDIR)/audioop.obj" \

-	"$(INTDIR)/frameobject.obj" \

-	"$(INTDIR)/regexmodule.obj" \

-	"$(INTDIR)/funcobject.obj" \

-	"$(INTDIR)/getmtime.obj" \

-	"$(INTDIR)/operator.obj" \

-	"$(INTDIR)/stringobject.obj" \

-	"$(INTDIR)/posixmodule.obj" \

-	"$(INTDIR)/myreadline.obj" \

-	"$(INTDIR)/cmathmodule.obj" \

-	"$(INTDIR)/getcopyright.obj" \

-	"$(INTDIR)/cgensupport.obj" \

-	"$(INTDIR)/parsetok.obj" \

-	"$(INTDIR)/newmodule.obj" \

-	"$(INTDIR)/mappingobject.obj" \

-	"$(INTDIR)/acceler.obj" \

-	"$(INTDIR)/modsupport.obj" \

-	"$(INTDIR)/threadmodule.obj" \

-	"$(INTDIR)/soundex.obj" \

-	"$(INTDIR)/parser.obj" \

-	"$(INTDIR)/mathmodule.obj" \

-	"$(INTDIR)/importdl.obj" \

-	"$(INTDIR)/methodobject.obj" \

-	"$(INTDIR)/getpath.obj" \

-	"$(INTDIR)/mystrtoul.obj" \

-	"$(INTDIR)/rgbimgmodule.obj" \

-	"$(INTDIR)/rotormodule.obj" \

-	"$(INTDIR)/binascii.obj" \

-	"$(INTDIR)/node.obj" \

-	"$(INTDIR)/config.obj" \

-	"$(INTDIR)/selectmodule.obj" \

-	"$(INTDIR)/signalmodule.obj" \

-	"$(INTDIR)/marshal.obj" \

-	"$(INTDIR)/fileobject.obj" \

-	"$(INTDIR)/longobject.obj" \

-	"$(INTDIR)/accessobject.obj" \

-	"$(INTDIR)/ceval.obj" \

-	"$(INTDIR)/compile.obj" \

-	"$(INTDIR)/thread.obj" \

-	"$(INTDIR)/cobject.obj" \

-	"$(INTDIR)/getcompiler.obj" \

-	"$(INTDIR)/grammar1.obj" \

-	"$(INTDIR)/abstract.obj" \

-	"$(INTDIR)/object.obj" \

-	"$(INTDIR)/errnomodule.obj" \

-	"$(INTDIR)/timemodule.obj" \

-	"$(INTDIR)/complexobject.obj" \

-	"$(INTDIR)/environment.obj" \

-	"$(INTDIR)/floatobject.obj" \

-	"$(INTDIR)/getplatform.obj" \

-	"$(INTDIR)/tokenizer.obj" \

-	"$(INTDIR)/intobject.obj" \

-	"$(INTDIR)/import.obj" \

-	"$(INTDIR)/frozen.obj" \

-	"$(INTDIR)/structmodule.obj" \

-	"$(INTDIR)/errors.obj" \

-	"$(INTDIR)/arraymodule.obj" \

-	"$(INTDIR)/md5module.obj" \

-	"$(INTDIR)/traceback.obj" \

-	"$(INTDIR)/sysmodule.obj" \

-	"$(INTDIR)/listobject.obj" \

-	"$(INTDIR)/typeobject.obj" \

-	"$(INTDIR)/graminit.obj" \

-	"$(INTDIR)/imageop.obj" \

-	"$(INTDIR)/regexpr.obj" \

-	"$(INTDIR)/pythonrun.obj" \

-	"$(INTDIR)/md5c.obj" \

-	"$(INTDIR)/tupleobject.obj" \

-	"$(INTDIR)/yuvconvert.obj" \

-	"$(INTDIR)/getversion.obj" \

-	"$(INTDIR)/moduleobject.obj"

+	".\vc40_dll\Release\thread.obj" \

+	".\vc40_dll\Release\classobject.obj" \

+	".\vc40_dll\Release\bltinmodule.obj" \

+	".\vc40_dll\Release\object.obj" \

+	".\vc40_dll\Release\getargs.obj" \

+	".\vc40_dll\Release\getcompiler.obj" \

+	".\vc40_dll\Release\graminit.obj" \

+	".\vc40_dll\Release\importdl.obj" \

+	".\vc40_dll\Release\structmodule.obj" \

+	".\vc40_dll\Release\mystrtoul.obj" \

+	".\vc40_dll\Release\errnomodule.obj" \

+	".\vc40_dll\Release\frameobject.obj" \

+	".\vc40_dll\Release\fileobject.obj" \

+	".\vc40_dll\Release\longobject.obj" \

+	".\vc40_dll\Release\regexmodule.obj" \

+	".\vc40_dll\Release\environment.obj" \

+	".\vc40_dll\Release\audioop.obj" \

+	".\vc40_dll\Release\floatobject.obj" \

+	".\vc40_dll\Release\cobject.obj" \

+	".\vc40_dll\Release\frozen.obj" \

+	".\vc40_dll\Release\moduleobject.obj" \

+	".\vc40_dll\Release\node.obj" \

+	".\vc40_dll\Release\cmathmodule.obj" \

+	".\vc40_dll\Release\grammar1.obj" \

+	".\vc40_dll\Release\abstract.obj" \

+	".\vc40_dll\Release\complexobject.obj" \

+	".\vc40_dll\Release\arraymodule.obj" \

+	".\vc40_dll\Release\selectmodule.obj" \

+	".\vc40_dll\Release\structmember.obj" \

+	".\vc40_dll\Release\acceler.obj" \

+	".\vc40_dll\Release\timemodule.obj" \

+	".\vc40_dll\Release\accessobject.obj" \

+	".\vc40_dll\Release\socketmodule.obj" \

+	".\vc40_dll\Release\soundex.obj" \

+	".\vc40_dll\Release\tokenizer.obj" \

+	".\vc40_dll\Release\stringobject.obj" \

+	".\vc40_dll\Release\stropmodule.obj" \

+	".\vc40_dll\Release\intobject.obj" \

+	".\vc40_dll\Release\parsetok.obj" \

+	".\vc40_dll\Release\getcopyright.obj" \

+	".\vc40_dll\Release\getpath.obj" \

+	".\vc40_dll\Release\listobject.obj" \

+	".\vc40_dll\Release\typeobject.obj" \

+	".\vc40_dll\Release\rangeobject.obj" \

+	".\vc40_dll\Release\md5module.obj" \

+	".\vc40_dll\Release\traceback.obj" \

+	".\vc40_dll\Release\sysmodule.obj" \

+	".\vc40_dll\Release\marshal.obj" \

+	".\vc40_dll\Release\yuvconvert.obj" \

+	".\vc40_dll\Release\pythonrun.obj" \

+	".\vc40_dll\Release\getversion.obj" \

+	".\vc40_dll\Release\threadmodule.obj" \

+	".\vc40_dll\Release\mathmodule.obj" \

+	".\vc40_dll\Release\ceval.obj" \

+	".\vc40_dll\Release\compile.obj" \

+	".\vc40_dll\Release\import.obj" \

+	".\vc40_dll\Release\md5c.obj" \

+	".\vc40_dll\Release\posixmodule.obj" \

+	".\vc40_dll\Release\errors.obj" \

+	".\vc40_dll\Release\binascii.obj" \

+	".\vc40_dll\Release\cgensupport.obj" \

+	".\vc40_dll\Release\methodobject.obj" \

+	".\vc40_dll\Release\rgbimgmodule.obj" \

+	".\vc40_dll\Release\getplatform.obj" \

+	".\vc40_dll\Release\signalmodule.obj" \

+	".\vc40_dll\Release\parser.obj" \

+	".\vc40_dll\Release\getmtime.obj" \

+	".\vc40_dll\Release\funcobject.obj" \

+	".\vc40_dll\Release\operator.obj" \

+	".\vc40_dll\Release\mappingobject.obj" \

+	".\vc40_dll\Release\myreadline.obj" \

+	".\vc40_dll\Release\config.obj" \

+	".\vc40_dll\Release\imageop.obj" \

+	".\vc40_dll\Release\rotormodule.obj" \

+	".\vc40_dll\Release\regexpr.obj" \

+	".\vc40_dll\Release\tupleobject.obj" \

+	".\vc40_dll\Release\modsupport.obj" \

+	".\vc40_dll\Release\newmodule.obj" \

+	".\vc40_dll\Release\sliceobject.obj"

 

 "$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)

     $(LINK32) @<<

@@ -432,84 +434,85 @@
 	-@erase ".\vc40_dll\Debug\vc40.pdb"

 	-@erase ".\vc40_dll\Debug\vc40.idb"

 	-@erase ".\vc40_dll\Debug\py14an.dll"

-	-@erase ".\vc40_dll\Debug\node.obj"

-	-@erase ".\vc40_dll\Debug\arraymodule.obj"

-	-@erase ".\vc40_dll\Debug\funcobject.obj"

-	-@erase ".\vc40_dll\Debug\structmember.obj"

+	-@erase ".\vc40_dll\Debug\threadmodule.obj"

+	-@erase ".\vc40_dll\Debug\frameobject.obj"

+	-@erase ".\vc40_dll\Debug\fileobject.obj"

+	-@erase ".\vc40_dll\Debug\longobject.obj"

+	-@erase ".\vc40_dll\Debug\posixmodule.obj"

+	-@erase ".\vc40_dll\Debug\cgensupport.obj"

 	-@erase ".\vc40_dll\Debug\soundex.obj"

 	-@erase ".\vc40_dll\Debug\tokenizer.obj"

-	-@erase ".\vc40_dll\Debug\myreadline.obj"

+	-@erase ".\vc40_dll\Debug\selectmodule.obj"

 	-@erase ".\vc40_dll\Debug\intobject.obj"

-	-@erase ".\vc40_dll\Debug\tupleobject.obj"

-	-@erase ".\vc40_dll\Debug\frozen.obj"

-	-@erase ".\vc40_dll\Debug\socketmodule.obj"

+	-@erase ".\vc40_dll\Debug\signalmodule.obj"

+	-@erase ".\vc40_dll\Debug\getplatform.obj"

+	-@erase ".\vc40_dll\Debug\accessobject.obj"

+	-@erase ".\vc40_dll\Debug\md5c.obj"

 	-@erase ".\vc40_dll\Debug\imageop.obj"

-	-@erase ".\vc40_dll\Debug\graminit.obj"

-	-@erase ".\vc40_dll\Debug\stropmodule.obj"

-	-@erase ".\vc40_dll\Debug\modsupport.obj"

+	-@erase ".\vc40_dll\Debug\getpath.obj"

+	-@erase ".\vc40_dll\Debug\timemodule.obj"

 	-@erase ".\vc40_dll\Debug\md5module.obj"

 	-@erase ".\vc40_dll\Debug\traceback.obj"

 	-@erase ".\vc40_dll\Debug\sysmodule.obj"

 	-@erase ".\vc40_dll\Debug\marshal.obj"

-	-@erase ".\vc40_dll\Debug\bltinmodule.obj"

-	-@erase ".\vc40_dll\Debug\getcopyright.obj"

-	-@erase ".\vc40_dll\Debug\pythonrun.obj"

-	-@erase ".\vc40_dll\Debug\ceval.obj"

-	-@erase ".\vc40_dll\Debug\config.obj"

-	-@erase ".\vc40_dll\Debug\rangeobject.obj"

-	-@erase ".\vc40_dll\Debug\mappingobject.obj"

-	-@erase ".\vc40_dll\Debug\getargs.obj"

-	-@erase ".\vc40_dll\Debug\frameobject.obj"

-	-@erase ".\vc40_dll\Debug\abstract.obj"

-	-@erase ".\vc40_dll\Debug\regexmodule.obj"

-	-@erase ".\vc40_dll\Debug\threadmodule.obj"

-	-@erase ".\vc40_dll\Debug\fileobject.obj"

-	-@erase ".\vc40_dll\Debug\longobject.obj"

-	-@erase ".\vc40_dll\Debug\posixmodule.obj"

-	-@erase ".\vc40_dll\Debug\cmathmodule.obj"

-	-@erase ".\vc40_dll\Debug\cgensupport.obj"

-	-@erase ".\vc40_dll\Debug\getplatform.obj"

-	-@erase ".\vc40_dll\Debug\selectmodule.obj"

-	-@erase ".\vc40_dll\Debug\signalmodule.obj"

-	-@erase ".\vc40_dll\Debug\parsetok.obj"

-	-@erase ".\vc40_dll\Debug\accessobject.obj"

-	-@erase ".\vc40_dll\Debug\import.obj"

-	-@erase ".\vc40_dll\Debug\acceler.obj"

-	-@erase ".\vc40_dll\Debug\errors.obj"

-	-@erase ".\vc40_dll\Debug\timemodule.obj"

-	-@erase ".\vc40_dll\Debug\regexpr.obj"

-	-@erase ".\vc40_dll\Debug\newmodule.obj"

 	-@erase ".\vc40_dll\Debug\stringobject.obj"

+	-@erase ".\vc40_dll\Debug\getmtime.obj"

+	-@erase ".\vc40_dll\Debug\import.obj"

+	-@erase ".\vc40_dll\Debug\pythonrun.obj"

+	-@erase ".\vc40_dll\Debug\mappingobject.obj"

+	-@erase ".\vc40_dll\Debug\operator.obj"

+	-@erase ".\vc40_dll\Debug\errors.obj"

+	-@erase ".\vc40_dll\Debug\getargs.obj"

 	-@erase ".\vc40_dll\Debug\rotormodule.obj"

-	-@erase ".\vc40_dll\Debug\parser.obj"

-	-@erase ".\vc40_dll\Debug\complexobject.obj"

-	-@erase ".\vc40_dll\Debug\getpath.obj"

-	-@erase ".\vc40_dll\Debug\importdl.obj"

-	-@erase ".\vc40_dll\Debug\classobject.obj"

+	-@erase ".\vc40_dll\Debug\tupleobject.obj"

+	-@erase ".\vc40_dll\Debug\ceval.obj"

+	-@erase ".\vc40_dll\Debug\modsupport.obj"

 	-@erase ".\vc40_dll\Debug\listobject.obj"

 	-@erase ".\vc40_dll\Debug\typeobject.obj"

-	-@erase ".\vc40_dll\Debug\binascii.obj"

-	-@erase ".\vc40_dll\Debug\mystrtoul.obj"

-	-@erase ".\vc40_dll\Debug\getcompiler.obj"

+	-@erase ".\vc40_dll\Debug\classobject.obj"

+	-@erase ".\vc40_dll\Debug\parser.obj"

 	-@erase ".\vc40_dll\Debug\yuvconvert.obj"

 	-@erase ".\vc40_dll\Debug\getversion.obj"

+	-@erase ".\vc40_dll\Debug\bltinmodule.obj"

 	-@erase ".\vc40_dll\Debug\structmodule.obj"

-	-@erase ".\vc40_dll\Debug\audioop.obj"

+	-@erase ".\vc40_dll\Debug\getcompiler.obj"

 	-@erase ".\vc40_dll\Debug\mathmodule.obj"

-	-@erase ".\vc40_dll\Debug\compile.obj"

-	-@erase ".\vc40_dll\Debug\errnomodule.obj"

-	-@erase ".\vc40_dll\Debug\cobject.obj"

 	-@erase ".\vc40_dll\Debug\methodobject.obj"

-	-@erase ".\vc40_dll\Debug\md5c.obj"

-	-@erase ".\vc40_dll\Debug\grammar1.obj"

-	-@erase ".\vc40_dll\Debug\getmtime.obj"

 	-@erase ".\vc40_dll\Debug\rgbimgmodule.obj"

-	-@erase ".\vc40_dll\Debug\thread.obj"

-	-@erase ".\vc40_dll\Debug\operator.obj"

+	-@erase ".\vc40_dll\Debug\importdl.obj"

+	-@erase ".\vc40_dll\Debug\errnomodule.obj"

+	-@erase ".\vc40_dll\Debug\regexmodule.obj"

 	-@erase ".\vc40_dll\Debug\environment.obj"

+	-@erase ".\vc40_dll\Debug\binascii.obj"

 	-@erase ".\vc40_dll\Debug\floatobject.obj"

 	-@erase ".\vc40_dll\Debug\moduleobject.obj"

+	-@erase ".\vc40_dll\Debug\acceler.obj"

+	-@erase ".\vc40_dll\Debug\thread.obj"

+	-@erase ".\vc40_dll\Debug\cmathmodule.obj"

+	-@erase ".\vc40_dll\Debug\regexpr.obj"

+	-@erase ".\vc40_dll\Debug\newmodule.obj"

+	-@erase ".\vc40_dll\Debug\funcobject.obj"

 	-@erase ".\vc40_dll\Debug\object.obj"

+	-@erase ".\vc40_dll\Debug\structmember.obj"

+	-@erase ".\vc40_dll\Debug\arraymodule.obj"

+	-@erase ".\vc40_dll\Debug\complexobject.obj"

+	-@erase ".\vc40_dll\Debug\grammar1.obj"

+	-@erase ".\vc40_dll\Debug\abstract.obj"

+	-@erase ".\vc40_dll\Debug\myreadline.obj"

+	-@erase ".\vc40_dll\Debug\node.obj"

+	-@erase ".\vc40_dll\Debug\socketmodule.obj"

+	-@erase ".\vc40_dll\Debug\mystrtoul.obj"

+	-@erase ".\vc40_dll\Debug\frozen.obj"

+	-@erase ".\vc40_dll\Debug\stropmodule.obj"

+	-@erase ".\vc40_dll\Debug\getcopyright.obj"

+	-@erase ".\vc40_dll\Debug\audioop.obj"

+	-@erase ".\vc40_dll\Debug\compile.obj"

+	-@erase ".\vc40_dll\Debug\cobject.obj"

+	-@erase ".\vc40_dll\Debug\parsetok.obj"

+	-@erase ".\vc40_dll\Debug\rangeobject.obj"

+	-@erase ".\vc40_dll\Debug\config.obj"

+	-@erase ".\vc40_dll\Debug\graminit.obj"

+	-@erase ".\vc40_dll\Debug\sliceobject.obj"

 	-@erase ".\vc40_dll\Debug\py14an.ilk"

 	-@erase ".\vc40_dll\Debug\py14an.lib"

 	-@erase ".\vc40_dll\Debug\py14an.exp"

@@ -568,84 +571,85 @@
 DEF_FILE= \

 	".\PC\python.def"

 LINK32_OBJS= \

-	"$(INTDIR)/node.obj" \

-	"$(INTDIR)/arraymodule.obj" \

-	"$(INTDIR)/funcobject.obj" \

-	"$(INTDIR)/structmember.obj" \

-	"$(INTDIR)/soundex.obj" \

-	"$(INTDIR)/tokenizer.obj" \

-	"$(INTDIR)/myreadline.obj" \

-	"$(INTDIR)/intobject.obj" \

-	"$(INTDIR)/tupleobject.obj" \

-	"$(INTDIR)/frozen.obj" \

-	"$(INTDIR)/socketmodule.obj" \

-	"$(INTDIR)/imageop.obj" \

-	"$(INTDIR)/graminit.obj" \

-	"$(INTDIR)/stropmodule.obj" \

-	"$(INTDIR)/modsupport.obj" \

-	"$(INTDIR)/md5module.obj" \

-	"$(INTDIR)/traceback.obj" \

-	"$(INTDIR)/sysmodule.obj" \

-	"$(INTDIR)/marshal.obj" \

-	"$(INTDIR)/bltinmodule.obj" \

-	"$(INTDIR)/getcopyright.obj" \

-	"$(INTDIR)/pythonrun.obj" \

-	"$(INTDIR)/ceval.obj" \

-	"$(INTDIR)/config.obj" \

-	"$(INTDIR)/rangeobject.obj" \

-	"$(INTDIR)/mappingobject.obj" \

-	"$(INTDIR)/getargs.obj" \

-	"$(INTDIR)/frameobject.obj" \

-	"$(INTDIR)/abstract.obj" \

-	"$(INTDIR)/regexmodule.obj" \

-	"$(INTDIR)/threadmodule.obj" \

-	"$(INTDIR)/fileobject.obj" \

-	"$(INTDIR)/longobject.obj" \

-	"$(INTDIR)/posixmodule.obj" \

-	"$(INTDIR)/cmathmodule.obj" \

-	"$(INTDIR)/cgensupport.obj" \

-	"$(INTDIR)/getplatform.obj" \

-	"$(INTDIR)/selectmodule.obj" \

-	"$(INTDIR)/signalmodule.obj" \

-	"$(INTDIR)/parsetok.obj" \

-	"$(INTDIR)/accessobject.obj" \

-	"$(INTDIR)/import.obj" \

-	"$(INTDIR)/acceler.obj" \

-	"$(INTDIR)/errors.obj" \

-	"$(INTDIR)/timemodule.obj" \

-	"$(INTDIR)/regexpr.obj" \

-	"$(INTDIR)/newmodule.obj" \

-	"$(INTDIR)/stringobject.obj" \

-	"$(INTDIR)/rotormodule.obj" \

-	"$(INTDIR)/parser.obj" \

-	"$(INTDIR)/complexobject.obj" \

-	"$(INTDIR)/getpath.obj" \

-	"$(INTDIR)/importdl.obj" \

-	"$(INTDIR)/classobject.obj" \

-	"$(INTDIR)/listobject.obj" \

-	"$(INTDIR)/typeobject.obj" \

-	"$(INTDIR)/binascii.obj" \

-	"$(INTDIR)/mystrtoul.obj" \

-	"$(INTDIR)/getcompiler.obj" \

-	"$(INTDIR)/yuvconvert.obj" \

-	"$(INTDIR)/getversion.obj" \

-	"$(INTDIR)/structmodule.obj" \

-	"$(INTDIR)/audioop.obj" \

-	"$(INTDIR)/mathmodule.obj" \

-	"$(INTDIR)/compile.obj" \

-	"$(INTDIR)/errnomodule.obj" \

-	"$(INTDIR)/cobject.obj" \

-	"$(INTDIR)/methodobject.obj" \

-	"$(INTDIR)/md5c.obj" \

-	"$(INTDIR)/grammar1.obj" \

-	"$(INTDIR)/getmtime.obj" \

-	"$(INTDIR)/rgbimgmodule.obj" \

-	"$(INTDIR)/thread.obj" \

-	"$(INTDIR)/operator.obj" \

-	"$(INTDIR)/environment.obj" \

-	"$(INTDIR)/floatobject.obj" \

-	"$(INTDIR)/moduleobject.obj" \

-	"$(INTDIR)/object.obj"

+	".\vc40_dll\Debug\threadmodule.obj" \

+	".\vc40_dll\Debug\frameobject.obj" \

+	".\vc40_dll\Debug\fileobject.obj" \

+	".\vc40_dll\Debug\longobject.obj" \

+	".\vc40_dll\Debug\posixmodule.obj" \

+	".\vc40_dll\Debug\cgensupport.obj" \

+	".\vc40_dll\Debug\soundex.obj" \

+	".\vc40_dll\Debug\tokenizer.obj" \

+	".\vc40_dll\Debug\selectmodule.obj" \

+	".\vc40_dll\Debug\intobject.obj" \

+	".\vc40_dll\Debug\signalmodule.obj" \

+	".\vc40_dll\Debug\getplatform.obj" \

+	".\vc40_dll\Debug\accessobject.obj" \

+	".\vc40_dll\Debug\md5c.obj" \

+	".\vc40_dll\Debug\imageop.obj" \

+	".\vc40_dll\Debug\getpath.obj" \

+	".\vc40_dll\Debug\timemodule.obj" \

+	".\vc40_dll\Debug\md5module.obj" \

+	".\vc40_dll\Debug\traceback.obj" \

+	".\vc40_dll\Debug\sysmodule.obj" \

+	".\vc40_dll\Debug\marshal.obj" \

+	".\vc40_dll\Debug\stringobject.obj" \

+	".\vc40_dll\Debug\getmtime.obj" \

+	".\vc40_dll\Debug\import.obj" \

+	".\vc40_dll\Debug\pythonrun.obj" \

+	".\vc40_dll\Debug\mappingobject.obj" \

+	".\vc40_dll\Debug\operator.obj" \

+	".\vc40_dll\Debug\errors.obj" \

+	".\vc40_dll\Debug\getargs.obj" \

+	".\vc40_dll\Debug\rotormodule.obj" \

+	".\vc40_dll\Debug\tupleobject.obj" \

+	".\vc40_dll\Debug\ceval.obj" \

+	".\vc40_dll\Debug\modsupport.obj" \

+	".\vc40_dll\Debug\listobject.obj" \

+	".\vc40_dll\Debug\typeobject.obj" \

+	".\vc40_dll\Debug\classobject.obj" \

+	".\vc40_dll\Debug\parser.obj" \

+	".\vc40_dll\Debug\yuvconvert.obj" \

+	".\vc40_dll\Debug\getversion.obj" \

+	".\vc40_dll\Debug\bltinmodule.obj" \

+	".\vc40_dll\Debug\structmodule.obj" \

+	".\vc40_dll\Debug\getcompiler.obj" \

+	".\vc40_dll\Debug\mathmodule.obj" \

+	".\vc40_dll\Debug\methodobject.obj" \

+	".\vc40_dll\Debug\rgbimgmodule.obj" \

+	".\vc40_dll\Debug\importdl.obj" \

+	".\vc40_dll\Debug\errnomodule.obj" \

+	".\vc40_dll\Debug\regexmodule.obj" \

+	".\vc40_dll\Debug\environment.obj" \

+	".\vc40_dll\Debug\binascii.obj" \

+	".\vc40_dll\Debug\floatobject.obj" \

+	".\vc40_dll\Debug\moduleobject.obj" \

+	".\vc40_dll\Debug\acceler.obj" \

+	".\vc40_dll\Debug\thread.obj" \

+	".\vc40_dll\Debug\cmathmodule.obj" \

+	".\vc40_dll\Debug\regexpr.obj" \

+	".\vc40_dll\Debug\newmodule.obj" \

+	".\vc40_dll\Debug\funcobject.obj" \

+	".\vc40_dll\Debug\object.obj" \

+	".\vc40_dll\Debug\structmember.obj" \

+	".\vc40_dll\Debug\arraymodule.obj" \

+	".\vc40_dll\Debug\complexobject.obj" \

+	".\vc40_dll\Debug\grammar1.obj" \

+	".\vc40_dll\Debug\abstract.obj" \

+	".\vc40_dll\Debug\myreadline.obj" \

+	".\vc40_dll\Debug\node.obj" \

+	".\vc40_dll\Debug\socketmodule.obj" \

+	".\vc40_dll\Debug\mystrtoul.obj" \

+	".\vc40_dll\Debug\frozen.obj" \

+	".\vc40_dll\Debug\stropmodule.obj" \

+	".\vc40_dll\Debug\getcopyright.obj" \

+	".\vc40_dll\Debug\audioop.obj" \

+	".\vc40_dll\Debug\compile.obj" \

+	".\vc40_dll\Debug\cobject.obj" \

+	".\vc40_dll\Debug\parsetok.obj" \

+	".\vc40_dll\Debug\rangeobject.obj" \

+	".\vc40_dll\Debug\config.obj" \

+	".\vc40_dll\Debug\graminit.obj" \

+	".\vc40_dll\Debug\sliceobject.obj"

 

 "$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)

     $(LINK32) @<<

@@ -671,86 +675,87 @@
 

 CLEAN : 

 	-@erase ".\vc40_nt\Release\pyth_nt.exe"

-	-@erase ".\vc40_nt\Release\binascii.obj"

-	-@erase ".\vc40_nt\Release\getpath.obj"

-	-@erase ".\vc40_nt\Release\import.obj"

-	-@erase ".\vc40_nt\Release\getplatform.obj"

+	-@erase ".\vc40_nt\Release\importdl.obj"

+	-@erase ".\vc40_nt\Release\sysmodule.obj"

+	-@erase ".\vc40_nt\Release\mystrtoul.obj"

+	-@erase ".\vc40_nt\Release\myreadline.obj"

 	-@erase ".\vc40_nt\Release\getcopyright.obj"

-	-@erase ".\vc40_nt\Release\yuvconvert.obj"

-	-@erase ".\vc40_nt\Release\getversion.obj"

-	-@erase ".\vc40_nt\Release\marshal.obj"

-	-@erase ".\vc40_nt\Release\mathmodule.obj"

-	-@erase ".\vc40_nt\Release\md5c.obj"

+	-@erase ".\vc40_nt\Release\binascii.obj"

+	-@erase ".\vc40_nt\Release\errnomodule.obj"

+	-@erase ".\vc40_nt\Release\import.obj"

+	-@erase ".\vc40_nt\Release\frameobject.obj"

+	-@erase ".\vc40_nt\Release\regexmodule.obj"

+	-@erase ".\vc40_nt\Release\environment.obj"

+	-@erase ".\vc40_nt\Release\errors.obj"

+	-@erase ".\vc40_nt\Release\floatobject.obj"

+	-@erase ".\vc40_nt\Release\cmathmodule.obj"

 	-@erase ".\vc40_nt\Release\grammar1.obj"

 	-@erase ".\vc40_nt\Release\getmtime.obj"

-	-@erase ".\vc40_nt\Release\parser.obj"

 	-@erase ".\vc40_nt\Release\operator.obj"

+	-@erase ".\vc40_nt\Release\parser.obj"

+	-@erase ".\vc40_nt\Release\arraymodule.obj"

+	-@erase ".\vc40_nt\Release\acceler.obj"

+	-@erase ".\vc40_nt\Release\regexpr.obj"

+	-@erase ".\vc40_nt\Release\selectmodule.obj"

+	-@erase ".\vc40_nt\Release\fileobject.obj"

+	-@erase ".\vc40_nt\Release\longobject.obj"

+	-@erase ".\vc40_nt\Release\tokenizer.obj"

+	-@erase ".\vc40_nt\Release\accessobject.obj"

+	-@erase ".\vc40_nt\Release\stropmodule.obj"

+	-@erase ".\vc40_nt\Release\socketmodule.obj"

+	-@erase ".\vc40_nt\Release\ceval.obj"

+	-@erase ".\vc40_nt\Release\thread.obj"

+	-@erase ".\vc40_nt\Release\graminit.obj"

+	-@erase ".\vc40_nt\Release\stringobject.obj"

+	-@erase ".\vc40_nt\Release\md5module.obj"

+	-@erase ".\vc40_nt\Release\traceback.obj"

+	-@erase ".\vc40_nt\Release\rangeobject.obj"

+	-@erase ".\vc40_nt\Release\main.obj"

+	-@erase ".\vc40_nt\Release\object.obj"

+	-@erase ".\vc40_nt\Release\pythonrun.obj"

+	-@erase ".\vc40_nt\Release\timemodule.obj"

+	-@erase ".\vc40_nt\Release\audioop.obj"

+	-@erase ".\vc40_nt\Release\mappingobject.obj"

 	-@erase ".\vc40_nt\Release\compile.obj"

-	-@erase ".\vc40_nt\Release\threadmodule.obj"

 	-@erase ".\vc40_nt\Release\cobject.obj"

+	-@erase ".\vc40_nt\Release\posixmodule.obj"

+	-@erase ".\vc40_nt\Release\cgensupport.obj"

+	-@erase ".\vc40_nt\Release\threadmodule.obj"

+	-@erase ".\vc40_nt\Release\abstract.obj"

+	-@erase ".\vc40_nt\Release\frozen.obj"

+	-@erase ".\vc40_nt\Release\structmodule.obj"

+	-@erase ".\vc40_nt\Release\getopt.obj"

+	-@erase ".\vc40_nt\Release\getplatform.obj"

+	-@erase ".\vc40_nt\Release\modsupport.obj"

+	-@erase ".\vc40_nt\Release\listobject.obj"

+	-@erase ".\vc40_nt\Release\typeobject.obj"

+	-@erase ".\vc40_nt\Release\methodobject.obj"

+	-@erase ".\vc40_nt\Release\md5c.obj"

+	-@erase ".\vc40_nt\Release\rgbimgmodule.obj"

+	-@erase ".\vc40_nt\Release\yuvconvert.obj"

+	-@erase ".\vc40_nt\Release\getversion.obj"

+	-@erase ".\vc40_nt\Release\config.obj"

+	-@erase ".\vc40_nt\Release\signalmodule.obj"

+	-@erase ".\vc40_nt\Release\moduleobject.obj"

+	-@erase ".\vc40_nt\Release\mathmodule.obj"

+	-@erase ".\vc40_nt\Release\soundex.obj"

+	-@erase ".\vc40_nt\Release\node.obj"

+	-@erase ".\vc40_nt\Release\parsetok.obj"

+	-@erase ".\vc40_nt\Release\imageop.obj"

+	-@erase ".\vc40_nt\Release\getpath.obj"

 	-@erase ".\vc40_nt\Release\rotormodule.obj"

 	-@erase ".\vc40_nt\Release\tupleobject.obj"

 	-@erase ".\vc40_nt\Release\newmodule.obj"

-	-@erase ".\vc40_nt\Release\config.obj"

-	-@erase ".\vc40_nt\Release\rgbimgmodule.obj"

-	-@erase ".\vc40_nt\Release\classobject.obj"

-	-@erase ".\vc40_nt\Release\intobject.obj"

-	-@erase ".\vc40_nt\Release\funcobject.obj"

-	-@erase ".\vc40_nt\Release\mappingobject.obj"

-	-@erase ".\vc40_nt\Release\selectmodule.obj"

-	-@erase ".\vc40_nt\Release\signalmodule.obj"

-	-@erase ".\vc40_nt\Release\bltinmodule.obj"

-	-@erase ".\vc40_nt\Release\getcompiler.obj"

-	-@erase ".\vc40_nt\Release\myreadline.obj"

-	-@erase ".\vc40_nt\Release\main.obj"

-	-@erase ".\vc40_nt\Release\accessobject.obj"

-	-@erase ".\vc40_nt\Release\thread.obj"

-	-@erase ".\vc40_nt\Release\mystrtoul.obj"

-	-@erase ".\vc40_nt\Release\graminit.obj"

-	-@erase ".\vc40_nt\Release\errnomodule.obj"

-	-@erase ".\vc40_nt\Release\frameobject.obj"

-	-@erase ".\vc40_nt\Release\object.obj"

-	-@erase ".\vc40_nt\Release\regexmodule.obj"

-	-@erase ".\vc40_nt\Release\environment.obj"

-	-@erase ".\vc40_nt\Release\floatobject.obj"

-	-@erase ".\vc40_nt\Release\imageop.obj"

-	-@erase ".\vc40_nt\Release\regexpr.obj"

-	-@erase ".\vc40_nt\Release\cmathmodule.obj"

-	-@erase ".\vc40_nt\Release\arraymodule.obj"

-	-@erase ".\vc40_nt\Release\frozen.obj"

-	-@erase ".\vc40_nt\Release\abstract.obj"

-	-@erase ".\vc40_nt\Release\getopt.obj"

-	-@erase ".\vc40_nt\Release\getargs.obj"

-	-@erase ".\vc40_nt\Release\errors.obj"

-	-@erase ".\vc40_nt\Release\structmodule.obj"

-	-@erase ".\vc40_nt\Release\fileobject.obj"

-	-@erase ".\vc40_nt\Release\longobject.obj"

-	-@erase ".\vc40_nt\Release\ceval.obj"

-	-@erase ".\vc40_nt\Release\methodobject.obj"

-	-@erase ".\vc40_nt\Release\node.obj"

-	-@erase ".\vc40_nt\Release\tokenizer.obj"

-	-@erase ".\vc40_nt\Release\audioop.obj"

-	-@erase ".\vc40_nt\Release\complexobject.obj"

-	-@erase ".\vc40_nt\Release\stropmodule.obj"

-	-@erase ".\vc40_nt\Release\moduleobject.obj"

-	-@erase ".\vc40_nt\Release\parsetok.obj"

-	-@erase ".\vc40_nt\Release\md5module.obj"

-	-@erase ".\vc40_nt\Release\traceback.obj"

-	-@erase ".\vc40_nt\Release\sysmodule.obj"

-	-@erase ".\vc40_nt\Release\rangeobject.obj"

-	-@erase ".\vc40_nt\Release\timemodule.obj"

-	-@erase ".\vc40_nt\Release\pythonrun.obj"

 	-@erase ".\vc40_nt\Release\structmember.obj"

-	-@erase ".\vc40_nt\Release\acceler.obj"

-	-@erase ".\vc40_nt\Release\socketmodule.obj"

-	-@erase ".\vc40_nt\Release\posixmodule.obj"

-	-@erase ".\vc40_nt\Release\soundex.obj"

-	-@erase ".\vc40_nt\Release\importdl.obj"

-	-@erase ".\vc40_nt\Release\cgensupport.obj"

-	-@erase ".\vc40_nt\Release\modsupport.obj"

-	-@erase ".\vc40_nt\Release\stringobject.obj"

-	-@erase ".\vc40_nt\Release\listobject.obj"

-	-@erase ".\vc40_nt\Release\typeobject.obj"

+	-@erase ".\vc40_nt\Release\intobject.obj"

+	-@erase ".\vc40_nt\Release\classobject.obj"

+	-@erase ".\vc40_nt\Release\marshal.obj"

+	-@erase ".\vc40_nt\Release\bltinmodule.obj"

+	-@erase ".\vc40_nt\Release\complexobject.obj"

+	-@erase ".\vc40_nt\Release\funcobject.obj"

+	-@erase ".\vc40_nt\Release\getargs.obj"

+	-@erase ".\vc40_nt\Release\getcompiler.obj"

+	-@erase ".\vc40_nt\Release\sliceobject.obj"

 

 "$(OUTDIR)" :

     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"

@@ -798,86 +803,87 @@
  odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:no\

  /pdb:"$(OUTDIR)/pyth_nt.pdb" /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" 

 LINK32_OBJS= \

-	"$(INTDIR)/binascii.obj" \

-	"$(INTDIR)/getpath.obj" \

-	"$(INTDIR)/import.obj" \

-	"$(INTDIR)/getplatform.obj" \

-	"$(INTDIR)/getcopyright.obj" \

-	"$(INTDIR)/yuvconvert.obj" \

-	"$(INTDIR)/getversion.obj" \

-	"$(INTDIR)/marshal.obj" \

-	"$(INTDIR)/mathmodule.obj" \

-	"$(INTDIR)/md5c.obj" \

-	"$(INTDIR)/grammar1.obj" \

-	"$(INTDIR)/getmtime.obj" \

-	"$(INTDIR)/parser.obj" \

-	"$(INTDIR)/operator.obj" \

-	"$(INTDIR)/compile.obj" \

-	"$(INTDIR)/threadmodule.obj" \

-	"$(INTDIR)/cobject.obj" \

-	"$(INTDIR)/rotormodule.obj" \

-	"$(INTDIR)/tupleobject.obj" \

-	"$(INTDIR)/newmodule.obj" \

-	"$(INTDIR)/config.obj" \

-	"$(INTDIR)/rgbimgmodule.obj" \

-	"$(INTDIR)/classobject.obj" \

-	"$(INTDIR)/intobject.obj" \

-	"$(INTDIR)/funcobject.obj" \

-	"$(INTDIR)/mappingobject.obj" \

-	"$(INTDIR)/selectmodule.obj" \

-	"$(INTDIR)/signalmodule.obj" \

-	"$(INTDIR)/bltinmodule.obj" \

-	"$(INTDIR)/getcompiler.obj" \

-	"$(INTDIR)/myreadline.obj" \

-	"$(INTDIR)/main.obj" \

-	"$(INTDIR)/accessobject.obj" \

-	"$(INTDIR)/thread.obj" \

-	"$(INTDIR)/mystrtoul.obj" \

-	"$(INTDIR)/graminit.obj" \

-	"$(INTDIR)/errnomodule.obj" \

-	"$(INTDIR)/frameobject.obj" \

-	"$(INTDIR)/object.obj" \

-	"$(INTDIR)/regexmodule.obj" \

-	"$(INTDIR)/environment.obj" \

-	"$(INTDIR)/floatobject.obj" \

-	"$(INTDIR)/imageop.obj" \

-	"$(INTDIR)/regexpr.obj" \

-	"$(INTDIR)/cmathmodule.obj" \

-	"$(INTDIR)/arraymodule.obj" \

-	"$(INTDIR)/frozen.obj" \

-	"$(INTDIR)/abstract.obj" \

-	"$(INTDIR)/getopt.obj" \

-	"$(INTDIR)/getargs.obj" \

-	"$(INTDIR)/errors.obj" \

-	"$(INTDIR)/structmodule.obj" \

-	"$(INTDIR)/fileobject.obj" \

-	"$(INTDIR)/longobject.obj" \

-	"$(INTDIR)/ceval.obj" \

-	"$(INTDIR)/methodobject.obj" \

-	"$(INTDIR)/node.obj" \

-	"$(INTDIR)/tokenizer.obj" \

-	"$(INTDIR)/audioop.obj" \

-	"$(INTDIR)/complexobject.obj" \

-	"$(INTDIR)/stropmodule.obj" \

-	"$(INTDIR)/moduleobject.obj" \

-	"$(INTDIR)/parsetok.obj" \

-	"$(INTDIR)/md5module.obj" \

-	"$(INTDIR)/traceback.obj" \

-	"$(INTDIR)/sysmodule.obj" \

-	"$(INTDIR)/rangeobject.obj" \

-	"$(INTDIR)/timemodule.obj" \

-	"$(INTDIR)/pythonrun.obj" \

-	"$(INTDIR)/structmember.obj" \

-	"$(INTDIR)/acceler.obj" \

-	"$(INTDIR)/socketmodule.obj" \

-	"$(INTDIR)/posixmodule.obj" \

-	"$(INTDIR)/soundex.obj" \

-	"$(INTDIR)/importdl.obj" \

-	"$(INTDIR)/cgensupport.obj" \

-	"$(INTDIR)/modsupport.obj" \

-	"$(INTDIR)/stringobject.obj" \

-	"$(INTDIR)/listobject.obj" \

-	"$(INTDIR)/typeobject.obj"

+	".\vc40_nt\Release\importdl.obj" \

+	".\vc40_nt\Release\sysmodule.obj" \

+	".\vc40_nt\Release\mystrtoul.obj" \

+	".\vc40_nt\Release\myreadline.obj" \

+	".\vc40_nt\Release\getcopyright.obj" \

+	".\vc40_nt\Release\binascii.obj" \

+	".\vc40_nt\Release\errnomodule.obj" \

+	".\vc40_nt\Release\import.obj" \

+	".\vc40_nt\Release\frameobject.obj" \

+	".\vc40_nt\Release\regexmodule.obj" \

+	".\vc40_nt\Release\environment.obj" \

+	".\vc40_nt\Release\errors.obj" \

+	".\vc40_nt\Release\floatobject.obj" \

+	".\vc40_nt\Release\cmathmodule.obj" \

+	".\vc40_nt\Release\grammar1.obj" \

+	".\vc40_nt\Release\getmtime.obj" \

+	".\vc40_nt\Release\operator.obj" \

+	".\vc40_nt\Release\parser.obj" \

+	".\vc40_nt\Release\arraymodule.obj" \

+	".\vc40_nt\Release\acceler.obj" \

+	".\vc40_nt\Release\regexpr.obj" \

+	".\vc40_nt\Release\selectmodule.obj" \

+	".\vc40_nt\Release\fileobject.obj" \

+	".\vc40_nt\Release\longobject.obj" \

+	".\vc40_nt\Release\tokenizer.obj" \

+	".\vc40_nt\Release\accessobject.obj" \

+	".\vc40_nt\Release\stropmodule.obj" \

+	".\vc40_nt\Release\socketmodule.obj" \

+	".\vc40_nt\Release\ceval.obj" \

+	".\vc40_nt\Release\thread.obj" \

+	".\vc40_nt\Release\graminit.obj" \

+	".\vc40_nt\Release\stringobject.obj" \

+	".\vc40_nt\Release\md5module.obj" \

+	".\vc40_nt\Release\traceback.obj" \

+	".\vc40_nt\Release\rangeobject.obj" \

+	".\vc40_nt\Release\main.obj" \

+	".\vc40_nt\Release\object.obj" \

+	".\vc40_nt\Release\pythonrun.obj" \

+	".\vc40_nt\Release\timemodule.obj" \

+	".\vc40_nt\Release\audioop.obj" \

+	".\vc40_nt\Release\mappingobject.obj" \

+	".\vc40_nt\Release\compile.obj" \

+	".\vc40_nt\Release\cobject.obj" \

+	".\vc40_nt\Release\posixmodule.obj" \

+	".\vc40_nt\Release\cgensupport.obj" \

+	".\vc40_nt\Release\threadmodule.obj" \

+	".\vc40_nt\Release\abstract.obj" \

+	".\vc40_nt\Release\frozen.obj" \

+	".\vc40_nt\Release\structmodule.obj" \

+	".\vc40_nt\Release\getopt.obj" \

+	".\vc40_nt\Release\getplatform.obj" \

+	".\vc40_nt\Release\modsupport.obj" \

+	".\vc40_nt\Release\listobject.obj" \

+	".\vc40_nt\Release\typeobject.obj" \

+	".\vc40_nt\Release\methodobject.obj" \

+	".\vc40_nt\Release\md5c.obj" \

+	".\vc40_nt\Release\rgbimgmodule.obj" \

+	".\vc40_nt\Release\yuvconvert.obj" \

+	".\vc40_nt\Release\getversion.obj" \

+	".\vc40_nt\Release\config.obj" \

+	".\vc40_nt\Release\signalmodule.obj" \

+	".\vc40_nt\Release\moduleobject.obj" \

+	".\vc40_nt\Release\mathmodule.obj" \

+	".\vc40_nt\Release\soundex.obj" \

+	".\vc40_nt\Release\node.obj" \

+	".\vc40_nt\Release\parsetok.obj" \

+	".\vc40_nt\Release\imageop.obj" \

+	".\vc40_nt\Release\getpath.obj" \

+	".\vc40_nt\Release\rotormodule.obj" \

+	".\vc40_nt\Release\tupleobject.obj" \

+	".\vc40_nt\Release\newmodule.obj" \

+	".\vc40_nt\Release\structmember.obj" \

+	".\vc40_nt\Release\intobject.obj" \

+	".\vc40_nt\Release\classobject.obj" \

+	".\vc40_nt\Release\marshal.obj" \

+	".\vc40_nt\Release\bltinmodule.obj" \

+	".\vc40_nt\Release\complexobject.obj" \

+	".\vc40_nt\Release\funcobject.obj" \

+	".\vc40_nt\Release\getargs.obj" \

+	".\vc40_nt\Release\getcompiler.obj" \

+	".\vc40_nt\Release\sliceobject.obj"

 

 "$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)

     $(LINK32) @<<

@@ -905,86 +911,87 @@
 	-@erase ".\vc40_nt\Debug\vc40.pdb"

 	-@erase ".\vc40_nt\Debug\vc40.idb"

 	-@erase ".\vc40_nt\Debug\pyth_nt.exe"

-	-@erase ".\vc40_nt\Debug\config.obj"

-	-@erase ".\vc40_nt\Debug\myreadline.obj"

-	-@erase ".\vc40_nt\Debug\moduleobject.obj"

-	-@erase ".\vc40_nt\Debug\grammar1.obj"

-	-@erase ".\vc40_nt\Debug\abstract.obj"

-	-@erase ".\vc40_nt\Debug\acceler.obj"

-	-@erase ".\vc40_nt\Debug\thread.obj"

-	-@erase ".\vc40_nt\Debug\stropmodule.obj"

-	-@erase ".\vc40_nt\Debug\soundex.obj"

-	-@erase ".\vc40_nt\Debug\object.obj"

-	-@erase ".\vc40_nt\Debug\structmember.obj"

-	-@erase ".\vc40_nt\Debug\newmodule.obj"

-	-@erase ".\vc40_nt\Debug\rangeobject.obj"

-	-@erase ".\vc40_nt\Debug\md5module.obj"

-	-@erase ".\vc40_nt\Debug\socketmodule.obj"

-	-@erase ".\vc40_nt\Debug\getpath.obj"

-	-@erase ".\vc40_nt\Debug\typeobject.obj"

-	-@erase ".\vc40_nt\Debug\parsetok.obj"

-	-@erase ".\vc40_nt\Debug\stringobject.obj"

-	-@erase ".\vc40_nt\Debug\marshal.obj"

-	-@erase ".\vc40_nt\Debug\frozen.obj"

-	-@erase ".\vc40_nt\Debug\getversion.obj"

-	-@erase ".\vc40_nt\Debug\getopt.obj"

-	-@erase ".\vc40_nt\Debug\posixmodule.obj"

-	-@erase ".\vc40_nt\Debug\md5c.obj"

+	-@erase ".\vc40_nt\Debug\binascii.obj"

 	-@erase ".\vc40_nt\Debug\getcopyright.obj"

-	-@erase ".\vc40_nt\Debug\mystrtoul.obj"

-	-@erase ".\vc40_nt\Debug\longobject.obj"

-	-@erase ".\vc40_nt\Debug\cgensupport.obj"

+	-@erase ".\vc40_nt\Debug\newmodule.obj"

+	-@erase ".\vc40_nt\Debug\marshal.obj"

+	-@erase ".\vc40_nt\Debug\getplatform.obj"

+	-@erase ".\vc40_nt\Debug\intobject.obj"

+	-@erase ".\vc40_nt\Debug\myreadline.obj"

 	-@erase ".\vc40_nt\Debug\compile.obj"

 	-@erase ".\vc40_nt\Debug\cobject.obj"

-	-@erase ".\vc40_nt\Debug\getplatform.obj"

-	-@erase ".\vc40_nt\Debug\importdl.obj"

+	-@erase ".\vc40_nt\Debug\grammar1.obj"

+	-@erase ".\vc40_nt\Debug\abstract.obj"

 	-@erase ".\vc40_nt\Debug\threadmodule.obj"

-	-@erase ".\vc40_nt\Debug\binascii.obj"

-	-@erase ".\vc40_nt\Debug\ceval.obj"

-	-@erase ".\vc40_nt\Debug\timemodule.obj"

-	-@erase ".\vc40_nt\Debug\main.obj"

-	-@erase ".\vc40_nt\Debug\methodobject.obj"

+	-@erase ".\vc40_nt\Debug\mystrtoul.obj"

 	-@erase ".\vc40_nt\Debug\mappingobject.obj"

-	-@erase ".\vc40_nt\Debug\funcobject.obj"

-	-@erase ".\vc40_nt\Debug\rgbimgmodule.obj"

+	-@erase ".\vc40_nt\Debug\methodobject.obj"

 	-@erase ".\vc40_nt\Debug\rotormodule.obj"

-	-@erase ".\vc40_nt\Debug\selectmodule.obj"

 	-@erase ".\vc40_nt\Debug\tupleobject.obj"

-	-@erase ".\vc40_nt\Debug\signalmodule.obj"

-	-@erase ".\vc40_nt\Debug\getmtime.obj"

-	-@erase ".\vc40_nt\Debug\operator.obj"

-	-@erase ".\vc40_nt\Debug\tokenizer.obj"

-	-@erase ".\vc40_nt\Debug\accessobject.obj"

+	-@erase ".\vc40_nt\Debug\rgbimgmodule.obj"

+	-@erase ".\vc40_nt\Debug\selectmodule.obj"

+	-@erase ".\vc40_nt\Debug\typeobject.obj"

 	-@erase ".\vc40_nt\Debug\classobject.obj"

-	-@erase ".\vc40_nt\Debug\imageop.obj"

-	-@erase ".\vc40_nt\Debug\intobject.obj"

-	-@erase ".\vc40_nt\Debug\regexpr.obj"

-	-@erase ".\vc40_nt\Debug\modsupport.obj"

-	-@erase ".\vc40_nt\Debug\listobject.obj"

+	-@erase ".\vc40_nt\Debug\signalmodule.obj"

+	-@erase ".\vc40_nt\Debug\accessobject.obj"

+	-@erase ".\vc40_nt\Debug\md5c.obj"

 	-@erase ".\vc40_nt\Debug\bltinmodule.obj"

+	-@erase ".\vc40_nt\Debug\getversion.obj"

 	-@erase ".\vc40_nt\Debug\getcompiler.obj"

-	-@erase ".\vc40_nt\Debug\import.obj"

-	-@erase ".\vc40_nt\Debug\yuvconvert.obj"

-	-@erase ".\vc40_nt\Debug\traceback.obj"

-	-@erase ".\vc40_nt\Debug\sysmodule.obj"

-	-@erase ".\vc40_nt\Debug\errors.obj"

-	-@erase ".\vc40_nt\Debug\mathmodule.obj"

+	-@erase ".\vc40_nt\Debug\longobject.obj"

+	-@erase ".\vc40_nt\Debug\graminit.obj"

+	-@erase ".\vc40_nt\Debug\imageop.obj"

+	-@erase ".\vc40_nt\Debug\regexpr.obj"

 	-@erase ".\vc40_nt\Debug\errnomodule.obj"

-	-@erase ".\vc40_nt\Debug\pythonrun.obj"

-	-@erase ".\vc40_nt\Debug\getargs.obj"

+	-@erase ".\vc40_nt\Debug\parser.obj"

+	-@erase ".\vc40_nt\Debug\getopt.obj"

 	-@erase ".\vc40_nt\Debug\frameobject.obj"

 	-@erase ".\vc40_nt\Debug\regexmodule.obj"

 	-@erase ".\vc40_nt\Debug\environment.obj"

 	-@erase ".\vc40_nt\Debug\floatobject.obj"

-	-@erase ".\vc40_nt\Debug\parser.obj"

-	-@erase ".\vc40_nt\Debug\node.obj"

+	-@erase ".\vc40_nt\Debug\tokenizer.obj"

+	-@erase ".\vc40_nt\Debug\posixmodule.obj"

 	-@erase ".\vc40_nt\Debug\cmathmodule.obj"

-	-@erase ".\vc40_nt\Debug\fileobject.obj"

-	-@erase ".\vc40_nt\Debug\graminit.obj"

-	-@erase ".\vc40_nt\Debug\audioop.obj"

-	-@erase ".\vc40_nt\Debug\structmodule.obj"

+	-@erase ".\vc40_nt\Debug\getargs.obj"

+	-@erase ".\vc40_nt\Debug\main.obj"

+	-@erase ".\vc40_nt\Debug\config.obj"

+	-@erase ".\vc40_nt\Debug\timemodule.obj"

 	-@erase ".\vc40_nt\Debug\arraymodule.obj"

+	-@erase ".\vc40_nt\Debug\funcobject.obj"

+	-@erase ".\vc40_nt\Debug\md5module.obj"

+	-@erase ".\vc40_nt\Debug\traceback.obj"

+	-@erase ".\vc40_nt\Debug\sysmodule.obj"

+	-@erase ".\vc40_nt\Debug\structmodule.obj"

 	-@erase ".\vc40_nt\Debug\complexobject.obj"

+	-@erase ".\vc40_nt\Debug\pythonrun.obj"

+	-@erase ".\vc40_nt\Debug\audioop.obj"

+	-@erase ".\vc40_nt\Debug\thread.obj"

+	-@erase ".\vc40_nt\Debug\getmtime.obj"

+	-@erase ".\vc40_nt\Debug\operator.obj"

+	-@erase ".\vc40_nt\Debug\object.obj"

+	-@erase ".\vc40_nt\Debug\modsupport.obj"

+	-@erase ".\vc40_nt\Debug\listobject.obj"

+	-@erase ".\vc40_nt\Debug\moduleobject.obj"

+	-@erase ".\vc40_nt\Debug\stropmodule.obj"

+	-@erase ".\vc40_nt\Debug\parsetok.obj"

+	-@erase ".\vc40_nt\Debug\yuvconvert.obj"

+	-@erase ".\vc40_nt\Debug\acceler.obj"

+	-@erase ".\vc40_nt\Debug\ceval.obj"

+	-@erase ".\vc40_nt\Debug\mathmodule.obj"

+	-@erase ".\vc40_nt\Debug\rangeobject.obj"

+	-@erase ".\vc40_nt\Debug\structmember.obj"

+	-@erase ".\vc40_nt\Debug\import.obj"

+	-@erase ".\vc40_nt\Debug\frozen.obj"

+	-@erase ".\vc40_nt\Debug\soundex.obj"

+	-@erase ".\vc40_nt\Debug\errors.obj"

+	-@erase ".\vc40_nt\Debug\node.obj"

+	-@erase ".\vc40_nt\Debug\socketmodule.obj"

+	-@erase ".\vc40_nt\Debug\fileobject.obj"

+	-@erase ".\vc40_nt\Debug\importdl.obj"

+	-@erase ".\vc40_nt\Debug\getpath.obj"

+	-@erase ".\vc40_nt\Debug\stringobject.obj"

+	-@erase ".\vc40_nt\Debug\cgensupport.obj"

+	-@erase ".\vc40_nt\Debug\sliceobject.obj"

 	-@erase ".\vc40_nt\Debug\pyth_nt.ilk"

 	-@erase ".\vc40_nt\Debug\pyth_nt.pdb"

 

@@ -1034,86 +1041,87 @@
  odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:yes\

  /pdb:"$(OUTDIR)/pyth_nt.pdb" /debug /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" 

 LINK32_OBJS= \

-	"$(INTDIR)/config.obj" \

-	"$(INTDIR)/myreadline.obj" \

-	"$(INTDIR)/moduleobject.obj" \

-	"$(INTDIR)/grammar1.obj" \

-	"$(INTDIR)/abstract.obj" \

-	"$(INTDIR)/acceler.obj" \

-	"$(INTDIR)/thread.obj" \

-	"$(INTDIR)/stropmodule.obj" \

-	"$(INTDIR)/soundex.obj" \

-	"$(INTDIR)/object.obj" \

-	"$(INTDIR)/structmember.obj" \

-	"$(INTDIR)/newmodule.obj" \

-	"$(INTDIR)/rangeobject.obj" \

-	"$(INTDIR)/md5module.obj" \

-	"$(INTDIR)/socketmodule.obj" \

-	"$(INTDIR)/getpath.obj" \

-	"$(INTDIR)/typeobject.obj" \

-	"$(INTDIR)/parsetok.obj" \

-	"$(INTDIR)/stringobject.obj" \

-	"$(INTDIR)/marshal.obj" \

-	"$(INTDIR)/frozen.obj" \

-	"$(INTDIR)/getversion.obj" \

-	"$(INTDIR)/getopt.obj" \

-	"$(INTDIR)/posixmodule.obj" \

-	"$(INTDIR)/md5c.obj" \

-	"$(INTDIR)/getcopyright.obj" \

-	"$(INTDIR)/mystrtoul.obj" \

-	"$(INTDIR)/longobject.obj" \

-	"$(INTDIR)/cgensupport.obj" \

-	"$(INTDIR)/compile.obj" \

-	"$(INTDIR)/cobject.obj" \

-	"$(INTDIR)/getplatform.obj" \

-	"$(INTDIR)/importdl.obj" \

-	"$(INTDIR)/threadmodule.obj" \

-	"$(INTDIR)/binascii.obj" \

-	"$(INTDIR)/ceval.obj" \

-	"$(INTDIR)/timemodule.obj" \

-	"$(INTDIR)/main.obj" \

-	"$(INTDIR)/methodobject.obj" \

-	"$(INTDIR)/mappingobject.obj" \

-	"$(INTDIR)/funcobject.obj" \

-	"$(INTDIR)/rgbimgmodule.obj" \

-	"$(INTDIR)/rotormodule.obj" \

-	"$(INTDIR)/selectmodule.obj" \

-	"$(INTDIR)/tupleobject.obj" \

-	"$(INTDIR)/signalmodule.obj" \

-	"$(INTDIR)/getmtime.obj" \

-	"$(INTDIR)/operator.obj" \

-	"$(INTDIR)/tokenizer.obj" \

-	"$(INTDIR)/accessobject.obj" \

-	"$(INTDIR)/classobject.obj" \

-	"$(INTDIR)/imageop.obj" \

-	"$(INTDIR)/intobject.obj" \

-	"$(INTDIR)/regexpr.obj" \

-	"$(INTDIR)/modsupport.obj" \

-	"$(INTDIR)/listobject.obj" \

-	"$(INTDIR)/bltinmodule.obj" \

-	"$(INTDIR)/getcompiler.obj" \

-	"$(INTDIR)/import.obj" \

-	"$(INTDIR)/yuvconvert.obj" \

-	"$(INTDIR)/traceback.obj" \

-	"$(INTDIR)/sysmodule.obj" \

-	"$(INTDIR)/errors.obj" \

-	"$(INTDIR)/mathmodule.obj" \

-	"$(INTDIR)/errnomodule.obj" \

-	"$(INTDIR)/pythonrun.obj" \

-	"$(INTDIR)/getargs.obj" \

-	"$(INTDIR)/frameobject.obj" \

-	"$(INTDIR)/regexmodule.obj" \

-	"$(INTDIR)/environment.obj" \

-	"$(INTDIR)/floatobject.obj" \

-	"$(INTDIR)/parser.obj" \

-	"$(INTDIR)/node.obj" \

-	"$(INTDIR)/cmathmodule.obj" \

-	"$(INTDIR)/fileobject.obj" \

-	"$(INTDIR)/graminit.obj" \

-	"$(INTDIR)/audioop.obj" \

-	"$(INTDIR)/structmodule.obj" \

-	"$(INTDIR)/arraymodule.obj" \

-	"$(INTDIR)/complexobject.obj"

+	".\vc40_nt\Debug\binascii.obj" \

+	".\vc40_nt\Debug\getcopyright.obj" \

+	".\vc40_nt\Debug\newmodule.obj" \

+	".\vc40_nt\Debug\marshal.obj" \

+	".\vc40_nt\Debug\getplatform.obj" \

+	".\vc40_nt\Debug\intobject.obj" \

+	".\vc40_nt\Debug\myreadline.obj" \

+	".\vc40_nt\Debug\compile.obj" \

+	".\vc40_nt\Debug\cobject.obj" \

+	".\vc40_nt\Debug\grammar1.obj" \

+	".\vc40_nt\Debug\abstract.obj" \

+	".\vc40_nt\Debug\threadmodule.obj" \

+	".\vc40_nt\Debug\mystrtoul.obj" \

+	".\vc40_nt\Debug\mappingobject.obj" \

+	".\vc40_nt\Debug\methodobject.obj" \

+	".\vc40_nt\Debug\rotormodule.obj" \

+	".\vc40_nt\Debug\tupleobject.obj" \

+	".\vc40_nt\Debug\rgbimgmodule.obj" \

+	".\vc40_nt\Debug\selectmodule.obj" \

+	".\vc40_nt\Debug\typeobject.obj" \

+	".\vc40_nt\Debug\classobject.obj" \

+	".\vc40_nt\Debug\signalmodule.obj" \

+	".\vc40_nt\Debug\accessobject.obj" \

+	".\vc40_nt\Debug\md5c.obj" \

+	".\vc40_nt\Debug\bltinmodule.obj" \

+	".\vc40_nt\Debug\getversion.obj" \

+	".\vc40_nt\Debug\getcompiler.obj" \

+	".\vc40_nt\Debug\longobject.obj" \

+	".\vc40_nt\Debug\graminit.obj" \

+	".\vc40_nt\Debug\imageop.obj" \

+	".\vc40_nt\Debug\regexpr.obj" \

+	".\vc40_nt\Debug\errnomodule.obj" \

+	".\vc40_nt\Debug\parser.obj" \

+	".\vc40_nt\Debug\getopt.obj" \

+	".\vc40_nt\Debug\frameobject.obj" \

+	".\vc40_nt\Debug\regexmodule.obj" \

+	".\vc40_nt\Debug\environment.obj" \

+	".\vc40_nt\Debug\floatobject.obj" \

+	".\vc40_nt\Debug\tokenizer.obj" \

+	".\vc40_nt\Debug\posixmodule.obj" \

+	".\vc40_nt\Debug\cmathmodule.obj" \

+	".\vc40_nt\Debug\getargs.obj" \

+	".\vc40_nt\Debug\main.obj" \

+	".\vc40_nt\Debug\config.obj" \

+	".\vc40_nt\Debug\timemodule.obj" \

+	".\vc40_nt\Debug\arraymodule.obj" \

+	".\vc40_nt\Debug\funcobject.obj" \

+	".\vc40_nt\Debug\md5module.obj" \

+	".\vc40_nt\Debug\traceback.obj" \

+	".\vc40_nt\Debug\sysmodule.obj" \

+	".\vc40_nt\Debug\structmodule.obj" \

+	".\vc40_nt\Debug\complexobject.obj" \

+	".\vc40_nt\Debug\pythonrun.obj" \

+	".\vc40_nt\Debug\audioop.obj" \

+	".\vc40_nt\Debug\thread.obj" \

+	".\vc40_nt\Debug\getmtime.obj" \

+	".\vc40_nt\Debug\operator.obj" \

+	".\vc40_nt\Debug\object.obj" \

+	".\vc40_nt\Debug\modsupport.obj" \

+	".\vc40_nt\Debug\listobject.obj" \

+	".\vc40_nt\Debug\moduleobject.obj" \

+	".\vc40_nt\Debug\stropmodule.obj" \

+	".\vc40_nt\Debug\parsetok.obj" \

+	".\vc40_nt\Debug\yuvconvert.obj" \

+	".\vc40_nt\Debug\acceler.obj" \

+	".\vc40_nt\Debug\ceval.obj" \

+	".\vc40_nt\Debug\mathmodule.obj" \

+	".\vc40_nt\Debug\rangeobject.obj" \

+	".\vc40_nt\Debug\structmember.obj" \

+	".\vc40_nt\Debug\import.obj" \

+	".\vc40_nt\Debug\frozen.obj" \

+	".\vc40_nt\Debug\soundex.obj" \

+	".\vc40_nt\Debug\errors.obj" \

+	".\vc40_nt\Debug\node.obj" \

+	".\vc40_nt\Debug\socketmodule.obj" \

+	".\vc40_nt\Debug\fileobject.obj" \

+	".\vc40_nt\Debug\importdl.obj" \

+	".\vc40_nt\Debug\getpath.obj" \

+	".\vc40_nt\Debug\stringobject.obj" \

+	".\vc40_nt\Debug\cgensupport.obj" \

+	".\vc40_nt\Debug\sliceobject.obj"

 

 "$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)

     $(LINK32) @<<

@@ -1151,15 +1159,12 @@
 # Begin Source File

 

 SOURCE=.\Objects\longobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_LONGO=\

 	".\./Include\allobjects.h"\

 	".\./Include\longintrepr.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1180,13 +1185,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1198,65 +1204,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_LONGO=\

-	".\./Include\allobjects.h"\

-	".\./Include\longintrepr.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\listobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_LISTO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1277,11 +1236,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1293,62 +1253,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_LISTO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\intobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_INTOB=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1369,12 +1283,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1386,56 +1301,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_INTOB=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\importdl.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_IMPOR=\

 	".\./Include\allobjects.h"\

 	".\./Include\osdefs.h"\

@@ -1443,7 +1313,7 @@
 	{$(INCLUDE)}"\sys\TYPES.H"\

 	{$(INCLUDE)}"\sys\STAT.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1464,13 +1334,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1487,70 +1358,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_IMPOR=\

-	".\./Include\allobjects.h"\

-	".\./Include\osdefs.h"\

-	".\Python\importdl.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	{$(INCLUDE)}"\sys\STAT.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-NODEP_CPP_IMPOR=\

-	".\Python\dl.h"\

-	".\Python\macdefs.h"\

-	".\Python\macglue.h"\

-	

-

-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\imageop.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_IMAGE=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1571,12 +1388,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1588,48 +1406,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_IMAGE=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -1643,8 +1419,8 @@
 	".\./Include\grammar.h"\

 	".\./Include\token.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\Include\bitset.h"\

 	".\./Include\rename2.h"\

@@ -1661,8 +1437,8 @@
 	".\./Include\grammar.h"\

 	".\./Include\token.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

@@ -1686,8 +1462,8 @@
 	".\./Include\pgenheaders.h"\

 	".\./Include\grammar.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\Include\bitset.h"\

 	".\./Include\rename2.h"\

@@ -1703,8 +1479,8 @@
 	".\./Include\pgenheaders.h"\

 	".\./Include\grammar.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

@@ -1721,15 +1497,12 @@
 # Begin Source File

 

 SOURCE=.\Python\getversion.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_GETVE=\

 	".\./Include\Python.h"\

 	".\./Include\patchlevel.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1750,13 +1523,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1768,63 +1542,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_GETVE=\

-	".\./Include\Python.h"\

-	".\./Include\patchlevel.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getplatform.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_GETPL=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1845,13 +1572,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1863,63 +1591,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_GETPL=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\getpath.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_GETPA=\

 	".\./Include\Python.h"\

 	".\./Include\osdefs.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -1940,13 +1622,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -1958,50 +1641,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_GETPA=\

-	".\./Include\Python.h"\

-	".\./Include\osdefs.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -2023,14 +1662,11 @@
 # Begin Source File

 

 SOURCE=.\Python\getcopyright.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_GETCO=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2051,13 +1687,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2069,62 +1706,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_GETCO=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getcompiler.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_GETCOM=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2145,13 +1736,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2163,61 +1755,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_GETCOM=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getargs.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_GETAR=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2238,13 +1784,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2256,62 +1803,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_GETAR=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\funcobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_FUNCO=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2332,13 +1834,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2350,63 +1853,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_FUNCO=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\frozen.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_FROZE=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2427,13 +1883,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2445,57 +1902,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_FROZE=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\frameobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_FRAME=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

@@ -2504,7 +1915,7 @@
 	".\./Include\structmember.h"\

 	".\./Include\bltinmodule.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2525,13 +1936,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

@@ -2542,67 +1954,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_FRAME=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./Include\frameobject.h"\

-	".\./Include\opcode.h"\

-	".\./Include\structmember.h"\

-	".\./Include\bltinmodule.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\floatobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_FLOAT=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2623,12 +1985,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2640,64 +2003,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_FLOAT=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\fileobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_FILEO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\structmember.h"\

 	".\./Include\ceval.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2718,11 +2035,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2734,62 +2052,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_FILEO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\structmember.h"\

-	".\./Include\ceval.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\errors.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_ERROR=\

 	".\./Include\allobjects.h"\

 	".\./Include\traceback.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2809,13 +2081,14 @@
 	".\Include\classobject.h"\

 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2827,60 +2100,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_ERROR=\

-	".\./Include\allobjects.h"\

-	".\./Include\traceback.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\environment.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_ENVIR=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2901,13 +2129,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -2919,61 +2148,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_ENVIR=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\PC\config.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_CONFI=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -2994,13 +2178,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3012,63 +2197,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_CONFI=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\complexobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_COMPL=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3089,12 +2228,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3106,57 +2246,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_COMPL=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\compile.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_COMPI=\

 	".\./Include\allobjects.h"\

 	".\./Include\node.h"\

@@ -3166,7 +2260,7 @@
 	".\./Include\opcode.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3187,13 +2281,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3205,67 +2300,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_COMPI=\

-	".\./Include\allobjects.h"\

-	".\./Include\node.h"\

-	".\./Include\token.h"\

-	".\./Include\graminit.h"\

-	".\./Include\compile.h"\

-	".\./Include\opcode.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\cobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_COBJE=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3286,13 +2330,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3304,62 +2349,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_COBJE=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\cmathmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_CMATH=\

 	".\./Include\allobjects.h"\

+	".\./Include\complexobject.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3367,7 +2367,6 @@
 	".\Include\intobject.h"\

 	".\Include\longobject.h"\

 	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

 	".\Include\rangeobject.h"\

 	".\Include\stringobject.h"\

 	".\Include\tupleobject.h"\

@@ -3380,83 +2379,35 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-NODEP_CPP_CMATH=\

-	".\Modules\complexobject.h"\

-	

 

 "$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_CMATH=\

-	".\./Include\allobjects.h"\

-	".\./Include\complexobject.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\classobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_CLASS=\

 	".\./Include\allobjects.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3477,13 +2428,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3495,62 +2447,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_CLASS=\

-	".\./Include\allobjects.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\cgensupport.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_CGENS=\

 	".\./Include\allobjects.h"\

 	".\./Include\cgensupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3571,13 +2477,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3589,57 +2496,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_CGENS=\

-	".\./Include\allobjects.h"\

-	".\./Include\cgensupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\ceval.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_CEVAL=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

@@ -3649,7 +2510,7 @@
 	".\./Include\graminit.h"\

 	".\./Include\thread.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3670,13 +2531,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3687,61 +2549,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_CEVAL=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./Include\frameobject.h"\

-	".\./Include\eval.h"\

-	".\./Include\opcode.h"\

-	".\./Include\graminit.h"\

-	".\./Include\thread.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	

-

-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\bltinmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_BLTIN=\

 	".\./Include\allobjects.h"\

 	".\./Include\node.h"\

@@ -3751,7 +2563,7 @@
 	".\./Include\compile.h"\

 	".\./Include\eval.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3772,13 +2584,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

@@ -3788,67 +2601,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_BLTIN=\

-	".\./Include\allobjects.h"\

-	".\./Include\node.h"\

-	".\./Include\graminit.h"\

-	".\./Include\bltinmodule.h"\

-	".\./Include\import.h"\

-	".\./Include\compile.h"\

-	".\./Include\eval.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\binascii.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_BINAS=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3869,13 +2631,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3887,63 +2650,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_BINAS=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\audioop.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_AUDIO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -3964,12 +2681,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -3981,64 +2699,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_AUDIO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\arraymodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_ARRAY=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4059,11 +2731,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -4075,64 +2748,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_ARRAY=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\accessobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_ACCES=\

 	".\./Include\allobjects.h"\

 	".\./Include\ceval.h"\

 	".\./Include\structmember.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4153,11 +2780,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -4169,49 +2797,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_ACCES=\

-	".\./Include\allobjects.h"\

-	".\./Include\ceval.h"\

-	".\./Include\structmember.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -4224,8 +2809,8 @@
 	".\./Include\token.h"\

 	".\Parser\parser.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

@@ -4240,14 +2825,11 @@
 # Begin Source File

 

 SOURCE=.\Objects\abstract.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_ABSTR=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4268,13 +2850,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -4286,49 +2869,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_ABSTR=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -4347,13 +2887,10 @@
 # Begin Source File

 

 SOURCE=.\Objects\typeobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_TYPEO=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4374,13 +2911,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -4392,60 +2930,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_TYPEO=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\tupleobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_TUPLE=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4466,13 +2959,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -4484,65 +2978,21 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_TUPLE=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\traceback.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_TRACE=\

 	".\./Include\allobjects.h"\

+	".\./Include\sysmodule.h"\

 	".\./Include\compile.h"\

 	".\./Include\frameobject.h"\

 	".\./Include\traceback.h"\

 	".\./Include\structmember.h"\

 	".\./Include\osdefs.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4562,73 +3012,24 @@
 	".\Include\classobject.h"\

 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-NODEP_CPP_TRACE=\

-	".\Python\sysmodule.h"\

-	

 

 "$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_TRACE=\

-	".\./Include\allobjects.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\compile.h"\

-	".\./Include\frameobject.h"\

-	".\./Include\traceback.h"\

-	".\./Include\structmember.h"\

-	".\./Include\osdefs.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -4639,8 +3040,8 @@
 	".\Parser\tokenizer.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\./Include\token.h"\

@@ -4655,21 +3056,16 @@
 # Begin Source File

 

 SOURCE=.\Modules\timemodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_TIMEM=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	{$(INCLUDE)}"\unistd.h"\

-	".\./Include\myselect.h"\

-	".\./Include\mytime.h"\

 	{$(INCLUDE)}"\sys\TIMEB.H"\

 	{$(INCLUDE)}"\i86.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4690,82 +3086,37 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_TIMEM=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	{$(INCLUDE)}"\unistd.h"\

-	".\./Include\myselect.h"\

-	".\./Include\mytime.h"\

-	{$(INCLUDE)}"\sys\TIMEB.H"\

-	{$(INCLUDE)}"\i86.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_TIMEM=\

+	".\Modules\myselect.h"\

+	".\Modules\mytime.h"\

 	

 

 "$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\threadmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_THREA=\

 	".\./Include\allobjects.h"\

+	".\./Include\thread.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4786,69 +3137,24 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-NODEP_CPP_THREA=\

-	".\Modules\thread.h"\

 	

 

 "$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_THREA=\

-	".\./Include\allobjects.h"\

-	".\./Include\thread.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	

-

-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -4876,14 +3182,11 @@
 # Begin Source File

 

 SOURCE=.\Modules\structmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_STRUC=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4904,12 +3207,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -4921,61 +3225,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_STRUC=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\structmember.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_STRUCT=\

 	".\./Include\allobjects.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -4996,13 +3255,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5014,62 +3274,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_STRUCT=\

-	".\./Include\allobjects.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\stropmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_STROP=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5090,12 +3304,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5107,60 +3322,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_STROP=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\stringobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_STRIN=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5181,13 +3351,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5199,61 +3370,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_STRIN=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\soundex.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_SOUND=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5274,13 +3400,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5292,62 +3419,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_SOUND=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\signalmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_SIGNA=\

 	".\./Include\Python.h"\

+	".\./Include\thread.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5368,86 +3450,38 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

 	

 NODEP_CPP_SIGNA=\

 	".\Modules\intrcheck.h"\

-	".\Modules\thread.h"\

 	

 

 "$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_SIGNA=\

-	".\./Include\Python.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\thread.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	

-

-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\rotormodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_ROTOR=\

 	".\./Include\Python.h"\

 	".\./Include\mymath.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5468,13 +3502,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5486,64 +3521,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_ROTOR=\

-	".\./Include\Python.h"\

-	".\./Include\mymath.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\rgbimgmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_RGBIM=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	{$(INCLUDE)}"\unistd.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5564,12 +3552,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5581,61 +3570,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_RGBIM=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	{$(INCLUDE)}"\unistd.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\regexpr.c

 DEP_CPP_REGEX=\

-	".\./Include\myproto.h"\

 	".\Modules\regexpr.h"\

 	".\./PC\config.h"\

-	".\./Include\rename2.h"\

 	

 NODEP_CPP_REGEX=\

+	".\Modules\myproto.h"\

 	".\Modules\lisp.h"\

 	".\Modules\buffer.h"\

 	".\Modules\syntax.h"\

@@ -5650,15 +3595,12 @@
 # Begin Source File

 

 SOURCE=.\Modules\regexmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_REGEXM=\

 	".\./Include\Python.h"\

 	".\Modules\regexpr.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5679,13 +3621,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5697,62 +3640,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_REGEXM=\

-	".\./Include\Python.h"\

-	".\Modules\regexpr.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\rangeobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_RANGE=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5773,13 +3669,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -5791,61 +3688,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_RANGE=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\pythonrun.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_PYTHO=\

 	".\./Include\allobjects.h"\

 	".\./Include\grammar.h"\

 	".\./Include\node.h"\

-	".\./Include\parsetok.h"\

 	".\./Include\graminit.h"\

 	".\./Include\errcode.h"\

 	".\./Include\sysmodule.h"\

@@ -5854,10 +3705,9 @@
 	".\./Include\eval.h"\

 	".\./Include\ceval.h"\

 	".\./Include\import.h"\

-	".\./Include\marshal.h"\

 	".\./Include\thread.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -5878,73 +3728,25 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

 	

-

-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_PYTHO=\

-	".\./Include\allobjects.h"\

-	".\./Include\grammar.h"\

-	".\./Include\node.h"\

-	".\./Include\parsetok.h"\

-	".\./Include\graminit.h"\

-	".\./Include\errcode.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\bltinmodule.h"\

-	".\./Include\compile.h"\

-	".\./Include\eval.h"\

-	".\./Include\ceval.h"\

-	".\./Include\import.h"\

-	".\./Include\marshal.h"\

-	".\./Include\thread.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\rename2.h"\

-	".\Include\bitset.h"\

+NODEP_CPP_PYTHO=\

+	".\Python\parsetok.h"\

+	".\Python\marshal.h"\

 	

 

 "$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -5956,16 +3758,18 @@
 	".\./Include\node.h"\

 	".\./Include\grammar.h"\

 	".\Parser\parser.h"\

-	".\./Include\parsetok.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\./Include\token.h"\

 	".\Include\bitset.h"\

 	

+NODEP_CPP_PARSE=\

+	".\Parser\parsetok.h"\

+	

 

 "$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

@@ -5984,8 +3788,8 @@
 	".\Parser\parser.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

@@ -6000,13 +3804,10 @@
 # Begin Source File

 

 SOURCE=.\Objects\object.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_OBJEC=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6027,13 +3828,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -6045,48 +3847,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_OBJEC=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -6096,8 +3856,8 @@
 	".\./Include\pgenheaders.h"\

 	".\./Include\node.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	

@@ -6111,14 +3871,11 @@
 # Begin Source File

 

 SOURCE=.\Modules\newmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_NEWMO=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6139,13 +3896,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -6157,65 +3915,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_NEWMO=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\marshal.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_MARSH=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\longintrepr.h"\

 	".\./Include\compile.h"\

-	".\./Include\marshal.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6236,68 +3947,27 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_MARSH=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\longintrepr.h"\

-	".\./Include\compile.h"\

-	".\./Include\marshal.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_MARSH=\

+	".\Python\marshal.h"\

 	

 

 "$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -6319,10 +3989,11 @@
 SOURCE=.\Parser\myreadline.c

 DEP_CPP_MYREA=\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

+	

+NODEP_CPP_MYREA=\

+	".\Parser\myproto.h"\

+	".\Parser\mymalloc.h"\

+	".\Parser\intrcheck.h"\

 	

 

 "$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"

@@ -6334,14 +4005,11 @@
 # Begin Source File

 

 SOURCE=.\Objects\moduleobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_MODUL=\

 	".\./Include\allobjects.h"\

 	".\./Include\ceval.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6362,12 +4030,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -6379,60 +4048,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_MODUL=\

-	".\./Include\allobjects.h"\

-	".\./Include\ceval.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\modsupport.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_MODSU=\

 	".\./Include\allobjects.h"\

+	".\./Include\import.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6453,83 +4078,34 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\import.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-NODEP_CPP_MODSU=\

-	".\Python\import.h"\

-	

 

 "$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_MODSU=\

-	".\./Include\allobjects.h"\

-	".\./Include\import.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\methodobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_METHO=\

 	".\./Include\allobjects.h"\

 	".\./Include\token.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6550,13 +4126,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -6568,63 +4145,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_METHO=\

-	".\./Include\allobjects.h"\

-	".\./Include\token.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\md5module.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_MD5MO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\Modules\md5.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6645,12 +4176,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -6662,49 +4194,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_MD5MO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\Modules\md5.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -6724,14 +4213,11 @@
 # Begin Source File

 

 SOURCE=.\Modules\mathmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_MATHM=\

 	".\./Include\allobjects.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6752,13 +4238,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -6770,62 +4257,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_MATHM=\

-	".\./Include\allobjects.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\mappingobject.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_MAPPI=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6846,12 +4287,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -6863,48 +4305,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_MAPPI=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -6922,16 +4322,12 @@
 # Begin Source File

 

 SOURCE=.\Modules\socketmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_SOCKE=\

 	".\./Include\Python.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\mytime.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -6952,85 +4348,40 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_SOCKE=\

-	".\./Include\Python.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\mytime.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_SOCKE=\

+	".\Modules\mytime.h"\

 	

 

 "$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\selectmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_SELEC=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\myselect.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7051,82 +4402,39 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

-	".\./Include\mytime.h"\

+	

+NODEP_CPP_SELEC=\

+	".\Modules\myselect.h"\

 	

 

 "$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_SELEC=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\myselect.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	".\./Include\mytime.h"\

-	

-

-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\sysmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_SYSMO=\

 	".\./Include\allobjects.h"\

+	".\./Include\sysmodule.h"\

+	".\./Include\import.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\osdefs.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7147,79 +4455,27 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\import.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-NODEP_CPP_SYSMO=\

-	".\Python\sysmodule.h"\

-	".\Python\import.h"\

-	

 

 "$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_SYSMO=\

-	".\./Include\allobjects.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\import.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\osdefs.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\import.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_IMPORT=\

 	".\./Include\allobjects.h"\

 	".\./Include\node.h"\

@@ -7229,14 +4485,12 @@
 	".\./Include\errcode.h"\

 	".\./Include\sysmodule.h"\

 	".\./Include\bltinmodule.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\marshal.h"\

 	".\./Include\compile.h"\

 	".\./Include\eval.h"\

 	".\./Include\osdefs.h"\

 	".\Python\importdl.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7257,16 +4511,20 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

 NODEP_CPP_IMPORT=\

+	".\Python\pythonrun.h"\

+	".\Python\marshal.h"\

 	".\Python\macglue.h"\

 	

 

@@ -7274,81 +4532,21 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_IMPORT=\

-	".\./Include\allobjects.h"\

-	".\./Include\node.h"\

-	".\./Include\token.h"\

-	".\./Include\graminit.h"\

-	".\./Include\import.h"\

-	".\./Include\errcode.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\bltinmodule.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\marshal.h"\

-	".\./Include\compile.h"\

-	".\./Include\eval.h"\

-	".\./Include\osdefs.h"\

-	".\Python\importdl.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-NODEP_CPP_IMPORT=\

-	".\Python\macglue.h"\

-	

-

-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\posixmodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_POSIX=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	{$(INCLUDE)}"\sys\STAT.H"\

-	".\./Include\mytime.h"\

 	{$(INCLUDE)}"\unistd.h"\

 	{$(INCLUDE)}"\sys\UTIME.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7369,82 +4567,36 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_POSIX=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	{$(INCLUDE)}"\sys\STAT.H"\

-	".\./Include\mytime.h"\

-	{$(INCLUDE)}"\unistd.h"\

-	{$(INCLUDE)}"\sys\UTIME.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_POSIX=\

+	".\Modules\mytime.h"\

 	

 

 "$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\operator.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_OPERA=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7465,13 +4617,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -7483,62 +4636,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

-

-DEP_CPP_OPERA=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\errnomodule.c

-

-!IF  "$(CFG)" == "vc40_dll - Win32 Release"

-

 DEP_CPP_ERRNO=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7559,13 +4666,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -7577,18 +4685,55 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"

+# End Source File

+################################################################################

+# Begin Source File

 

-NODEP_CPP_ERRNO=\

-	".\Modules\Python.h"\

+SOURCE=.\Objects\sliceobject.c

+DEP_CPP_SLICE=\

+	".\./Include\Python.h"\

+	".\./Include\allobjects.h"\

+	".\./PC\config.h"\

+	".\Include\myproto.h"\

+	".\Include\object.h"\

+	".\Include\objimpl.h"\

+	".\Include\pydebug.h"\

+	".\Include\accessobject.h"\

+	".\Include\intobject.h"\

+	".\Include\longobject.h"\

+	".\Include\floatobject.h"\

+	".\./Include\complexobject.h"\

+	".\Include\rangeobject.h"\

+	".\Include\stringobject.h"\

+	".\Include\tupleobject.h"\

+	".\Include\listobject.h"\

+	".\Include\mappingobject.h"\

+	".\Include\methodobject.h"\

+	".\Include\moduleobject.h"\

+	".\Include\funcobject.h"\

+	".\Include\classobject.h"\

+	".\Include\fileobject.h"\

+	".\Include\cobject.h"\

+	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

+	".\Include\errors.h"\

+	".\Include\mymalloc.h"\

+	".\./Include\modsupport.h"\

+	".\./Include\ceval.h"\

+	".\Include\pythonrun.h"\

+	".\./Include\sysmodule.h"\

+	".\Include\intrcheck.h"\

+	".\./Include\import.h"\

+	".\./Include\bltinmodule.h"\

+	".\Include\abstract.h"\

+	".\./Include\rename2.h"\

+	".\./Include\thread.h"\

 	

 

-"$(INTDIR)\errnomodule.obj" : $(SOURCE) "$(INTDIR)"

+"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 # End Target

 ################################################################################

@@ -7607,15 +4752,12 @@
 # Begin Source File

 

 SOURCE=.\Objects\longobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_LONGO=\

 	".\./Include\allobjects.h"\

 	".\./Include\longintrepr.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7636,13 +4778,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -7654,66 +4797,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_LONGO=\

-	".\./Include\allobjects.h"\

-	".\./Include\longintrepr.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\listobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_LISTO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7734,11 +4829,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -7750,63 +4846,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_LISTO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\intobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_INTOB=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7827,12 +4876,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -7844,57 +4894,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_INTOB=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\importdl.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_IMPOR=\

 	".\./Include\allobjects.h"\

 	".\./Include\osdefs.h"\

@@ -7902,7 +4906,7 @@
 	{$(INCLUDE)}"\sys\TYPES.H"\

 	{$(INCLUDE)}"\sys\STAT.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -7923,13 +4927,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -7946,71 +4951,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_IMPOR=\

-	".\./Include\allobjects.h"\

-	".\./Include\osdefs.h"\

-	".\Python\importdl.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	{$(INCLUDE)}"\sys\STAT.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-NODEP_CPP_IMPOR=\

-	".\Python\dl.h"\

-	".\Python\macdefs.h"\

-	".\Python\macglue.h"\

-	

-

-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\imageop.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_IMAGE=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8031,12 +4981,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8048,49 +4999,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_IMAGE=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -8101,8 +5009,8 @@
 	".\./Include\grammar.h"\

 	".\./Include\token.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\Include\bitset.h"\

 	".\./Include\rename2.h"\

@@ -8121,8 +5029,8 @@
 	".\./Include\pgenheaders.h"\

 	".\./Include\grammar.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\Include\bitset.h"\

 	".\./Include\rename2.h"\

@@ -8137,15 +5045,12 @@
 # Begin Source File

 

 SOURCE=.\Python\getversion.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_GETVE=\

 	".\./Include\Python.h"\

 	".\./Include\patchlevel.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8166,13 +5071,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8184,64 +5090,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_GETVE=\

-	".\./Include\Python.h"\

-	".\./Include\patchlevel.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getplatform.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_GETPL=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8262,13 +5120,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8280,64 +5139,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_GETPL=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\getpath.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_GETPA=\

 	".\./Include\Python.h"\

 	".\./Include\osdefs.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8358,13 +5170,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8376,51 +5189,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_GETPA=\

-	".\./Include\Python.h"\

-	".\./Include\osdefs.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -8442,14 +5210,11 @@
 # Begin Source File

 

 SOURCE=.\Python\getcopyright.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_GETCO=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8470,13 +5235,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8488,63 +5254,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_GETCO=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getcompiler.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_GETCOM=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8565,13 +5284,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8583,62 +5303,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_GETCOM=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getargs.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_GETAR=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8659,13 +5332,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8677,63 +5351,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_GETAR=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\funcobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_FUNCO=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8754,13 +5382,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8772,64 +5401,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_FUNCO=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\frozen.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_FROZE=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8850,13 +5431,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -8868,58 +5450,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_FROZE=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\frameobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_FRAME=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

@@ -8928,7 +5463,7 @@
 	".\./Include\structmember.h"\

 	".\./Include\bltinmodule.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -8949,13 +5484,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

@@ -8966,68 +5502,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_FRAME=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./Include\frameobject.h"\

-	".\./Include\opcode.h"\

-	".\./Include\structmember.h"\

-	".\./Include\bltinmodule.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\floatobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_FLOAT=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9048,12 +5533,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9065,65 +5551,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_FLOAT=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\fileobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_FILEO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\structmember.h"\

 	".\./Include\ceval.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9144,11 +5583,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9160,63 +5600,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_FILEO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\structmember.h"\

-	".\./Include\ceval.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\errors.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_ERROR=\

 	".\./Include\allobjects.h"\

 	".\./Include\traceback.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9236,13 +5629,14 @@
 	".\Include\classobject.h"\

 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9254,61 +5648,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_ERROR=\

-	".\./Include\allobjects.h"\

-	".\./Include\traceback.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\environment.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_ENVIR=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9329,13 +5677,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9347,62 +5696,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_ENVIR=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\PC\config.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_CONFI=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9423,13 +5726,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9441,64 +5745,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_CONFI=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\complexobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_COMPL=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9519,12 +5776,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9536,58 +5794,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_COMPL=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\compile.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_COMPI=\

 	".\./Include\allobjects.h"\

 	".\./Include\node.h"\

@@ -9597,7 +5808,7 @@
 	".\./Include\opcode.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9618,13 +5829,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9636,68 +5848,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_COMPI=\

-	".\./Include\allobjects.h"\

-	".\./Include\node.h"\

-	".\./Include\token.h"\

-	".\./Include\graminit.h"\

-	".\./Include\compile.h"\

-	".\./Include\opcode.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\cobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_COBJE=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9718,13 +5878,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9736,63 +5897,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_COBJE=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\cmathmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_CMATH=\

 	".\./Include\allobjects.h"\

+	".\./Include\complexobject.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9800,7 +5915,6 @@
 	".\Include\intobject.h"\

 	".\Include\longobject.h"\

 	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

 	".\Include\rangeobject.h"\

 	".\Include\stringobject.h"\

 	".\Include\tupleobject.h"\

@@ -9813,84 +5927,35 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-NODEP_CPP_CMATH=\

-	".\Modules\complexobject.h"\

-	

 

 "$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_CMATH=\

-	".\./Include\allobjects.h"\

-	".\./Include\complexobject.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\classobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_CLASS=\

 	".\./Include\allobjects.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -9911,13 +5976,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -9929,63 +5995,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_CLASS=\

-	".\./Include\allobjects.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\cgensupport.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_CGENS=\

 	".\./Include\allobjects.h"\

 	".\./Include\cgensupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10006,13 +6025,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10024,58 +6044,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_CGENS=\

-	".\./Include\allobjects.h"\

-	".\./Include\cgensupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\ceval.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_CEVAL=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

@@ -10085,7 +6058,7 @@
 	".\./Include\graminit.h"\

 	".\./Include\thread.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10106,13 +6079,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10123,62 +6097,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_CEVAL=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./Include\frameobject.h"\

-	".\./Include\eval.h"\

-	".\./Include\opcode.h"\

-	".\./Include\graminit.h"\

-	".\./Include\thread.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	

-

-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\bltinmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_BLTIN=\

 	".\./Include\allobjects.h"\

 	".\./Include\node.h"\

@@ -10188,7 +6111,7 @@
 	".\./Include\compile.h"\

 	".\./Include\eval.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10209,13 +6132,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

@@ -10225,68 +6149,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_BLTIN=\

-	".\./Include\allobjects.h"\

-	".\./Include\node.h"\

-	".\./Include\graminit.h"\

-	".\./Include\bltinmodule.h"\

-	".\./Include\import.h"\

-	".\./Include\compile.h"\

-	".\./Include\eval.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\binascii.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_BINAS=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10307,13 +6179,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10325,64 +6198,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_BINAS=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\audioop.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_AUDIO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10403,12 +6229,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10420,65 +6247,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_AUDIO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\arraymodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_ARRAY=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10499,11 +6279,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10515,65 +6296,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_ARRAY=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\accessobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_ACCES=\

 	".\./Include\allobjects.h"\

 	".\./Include\ceval.h"\

 	".\./Include\structmember.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10594,11 +6328,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10610,50 +6345,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_ACCES=\

-	".\./Include\allobjects.h"\

-	".\./Include\ceval.h"\

-	".\./Include\structmember.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -10669,8 +6360,8 @@
 	".\./Include\token.h"\

 	".\Parser\parser.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\Include\bitset.h"\

 	".\./Include\rename2.h"\

@@ -10689,8 +6380,8 @@
 	".\./Include\token.h"\

 	".\Parser\parser.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

@@ -10707,14 +6398,11 @@
 # Begin Source File

 

 SOURCE=.\Objects\abstract.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_ABSTR=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10735,13 +6423,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10753,50 +6442,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_ABSTR=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -10815,13 +6460,10 @@
 # Begin Source File

 

 SOURCE=.\Objects\typeobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_TYPEO=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10842,13 +6484,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10860,61 +6503,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_TYPEO=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\tupleobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_TUPLE=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -10935,13 +6532,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -10953,57 +6551,11 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_TUPLE=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\traceback.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_TRACE=\

 	".\./Include\allobjects.h"\

 	".\./Include\sysmodule.h"\

@@ -11013,7 +6565,7 @@
 	".\./Include\structmember.h"\

 	".\./Include\osdefs.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11033,12 +6585,13 @@
 	".\Include\classobject.h"\

 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11050,53 +6603,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_TRACE=\

-	".\./Include\allobjects.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\compile.h"\

-	".\./Include\frameobject.h"\

-	".\./Include\traceback.h"\

-	".\./Include\structmember.h"\

-	".\./Include\osdefs.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -11110,8 +6616,8 @@
 	".\Parser\tokenizer.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\token.h"\

 	".\./Include\rename2.h"\

@@ -11128,8 +6634,8 @@
 	".\Parser\tokenizer.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\./Include\token.h"\

@@ -11146,21 +6652,16 @@
 # Begin Source File

 

 SOURCE=.\Modules\timemodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_TIMEM=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	{$(INCLUDE)}"\unistd.h"\

-	".\./Include\myselect.h"\

-	".\./Include\mytime.h"\

 	{$(INCLUDE)}"\sys\TIMEB.H"\

 	{$(INCLUDE)}"\i86.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11181,84 +6682,37 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_TIMEM=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	{$(INCLUDE)}"\unistd.h"\

-	".\./Include\myselect.h"\

-	".\./Include\mytime.h"\

-	{$(INCLUDE)}"\sys\TIMEB.H"\

-	{$(INCLUDE)}"\i86.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_TIMEM=\

+	".\Modules\myselect.h"\

+	".\Modules\mytime.h"\

 	

 

 "$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\threadmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_THREA=\

 	".\./Include\allobjects.h"\

 	".\./Include\thread.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11279,13 +6733,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11296,49 +6751,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_THREA=\

-	".\./Include\allobjects.h"\

-	".\./Include\thread.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	

-

-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -11366,14 +6778,11 @@
 # Begin Source File

 

 SOURCE=.\Modules\structmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_STRUC=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11394,12 +6803,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11411,62 +6821,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_STRUC=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\structmember.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_STRUCT=\

 	".\./Include\allobjects.h"\

 	".\./Include\structmember.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11487,13 +6851,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11505,63 +6870,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_STRUCT=\

-	".\./Include\allobjects.h"\

-	".\./Include\structmember.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\stropmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_STROP=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11582,12 +6900,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11599,61 +6918,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_STROP=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\stringobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_STRIN=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11674,13 +6947,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11692,62 +6966,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_STRIN=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\soundex.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_SOUND=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11768,13 +6996,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11786,65 +7015,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_SOUND=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\signalmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_SIGNA=\

 	".\./Include\Python.h"\

-	".\./Include\intrcheck.h"\

 	".\./Include\thread.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11865,80 +7046,38 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	

-

-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_SIGNA=\

-	".\./Include\Python.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\thread.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\rename2.h"\

+NODEP_CPP_SIGNA=\

+	".\Modules\intrcheck.h"\

 	

 

 "$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\rotormodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_ROTOR=\

 	".\./Include\Python.h"\

 	".\./Include\mymath.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -11959,13 +7098,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -11977,65 +7117,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_ROTOR=\

-	".\./Include\Python.h"\

-	".\./Include\mymath.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\rgbimgmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_RGBIM=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	{$(INCLUDE)}"\unistd.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12056,12 +7148,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -12073,62 +7166,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_RGBIM=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	{$(INCLUDE)}"\unistd.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\regexpr.c

 DEP_CPP_REGEX=\

-	".\./Include\myproto.h"\

 	".\Modules\regexpr.h"\

 	".\./PC\config.h"\

-	".\./Include\rename2.h"\

 	

 NODEP_CPP_REGEX=\

+	".\Modules\myproto.h"\

 	".\Modules\lisp.h"\

 	".\Modules\buffer.h"\

 	".\Modules\syntax.h"\

@@ -12143,15 +7191,12 @@
 # Begin Source File

 

 SOURCE=.\Modules\regexmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_REGEXM=\

 	".\./Include\Python.h"\

 	".\Modules\regexpr.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12172,13 +7217,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -12190,63 +7236,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_REGEXM=\

-	".\./Include\Python.h"\

-	".\Modules\regexpr.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\rangeobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_RANGE=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12267,13 +7265,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -12285,62 +7284,15 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_RANGE=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\pythonrun.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_PYTHO=\

 	".\./Include\allobjects.h"\

 	".\./Include\grammar.h"\

 	".\./Include\node.h"\

-	".\./Include\parsetok.h"\

 	".\./Include\graminit.h"\

 	".\./Include\errcode.h"\

 	".\./Include\sysmodule.h"\

@@ -12349,10 +7301,9 @@
 	".\./Include\eval.h"\

 	".\./Include\ceval.h"\

 	".\./Include\import.h"\

-	".\./Include\marshal.h"\

 	".\./Include\thread.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12373,74 +7324,25 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

 	

-

-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_PYTHO=\

-	".\./Include\allobjects.h"\

-	".\./Include\grammar.h"\

-	".\./Include\node.h"\

-	".\./Include\parsetok.h"\

-	".\./Include\graminit.h"\

-	".\./Include\errcode.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\bltinmodule.h"\

-	".\./Include\compile.h"\

-	".\./Include\eval.h"\

-	".\./Include\ceval.h"\

-	".\./Include\import.h"\

-	".\./Include\marshal.h"\

-	".\./Include\thread.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\Include\bitset.h"\

+NODEP_CPP_PYTHO=\

+	".\Python\parsetok.h"\

+	".\Python\marshal.h"\

 	

 

 "$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -12452,16 +7354,18 @@
 	".\./Include\node.h"\

 	".\./Include\grammar.h"\

 	".\Parser\parser.h"\

-	".\./Include\parsetok.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\./Include\token.h"\

 	".\Include\bitset.h"\

 	

+NODEP_CPP_PARSE=\

+	".\Parser\parsetok.h"\

+	

 

 "$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

@@ -12483,8 +7387,8 @@
 	".\Parser\parser.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\Include\bitset.h"\

 	".\./Include\rename2.h"\

@@ -12504,8 +7408,8 @@
 	".\Parser\parser.h"\

 	".\./Include\errcode.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	".\Include\bitset.h"\

@@ -12522,13 +7426,10 @@
 # Begin Source File

 

 SOURCE=.\Objects\object.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_OBJEC=\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12549,13 +7450,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -12567,49 +7469,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_OBJEC=\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -12619,8 +7478,8 @@
 	".\./Include\pgenheaders.h"\

 	".\./Include\node.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\mymalloc.h"\

 	".\Include\pydebug.h"\

 	".\./Include\rename2.h"\

 	

@@ -12634,14 +7493,11 @@
 # Begin Source File

 

 SOURCE=.\Modules\newmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_NEWMO=\

 	".\./Include\allobjects.h"\

 	".\./Include\compile.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12662,13 +7518,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -12680,50 +7537,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_NEWMO=\

-	".\./Include\allobjects.h"\

-	".\./Include\compile.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -12745,10 +7558,11 @@
 SOURCE=.\Parser\myreadline.c

 DEP_CPP_MYREA=\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

+	

+NODEP_CPP_MYREA=\

+	".\Parser\myproto.h"\

+	".\Parser\mymalloc.h"\

+	".\Parser\intrcheck.h"\

 	

 

 "$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"

@@ -12760,14 +7574,11 @@
 # Begin Source File

 

 SOURCE=.\Objects\moduleobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_MODUL=\

 	".\./Include\allobjects.h"\

 	".\./Include\ceval.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12788,12 +7599,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -12805,62 +7617,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_MODUL=\

-	".\./Include\allobjects.h"\

-	".\./Include\ceval.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\modsupport.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_MODSU=\

 	".\./Include\allobjects.h"\

 	".\./Include\import.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12881,13 +7647,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

@@ -12898,63 +7665,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_MODSU=\

-	".\./Include\allobjects.h"\

-	".\./Include\import.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\methodobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_METHO=\

 	".\./Include\allobjects.h"\

 	".\./Include\token.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -12975,13 +7695,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -12993,64 +7714,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_METHO=\

-	".\./Include\allobjects.h"\

-	".\./Include\token.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\md5module.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_MD5MO=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\Modules\md5.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13071,12 +7745,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -13088,50 +7763,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_MD5MO=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\Modules\md5.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -13151,14 +7782,11 @@
 # Begin Source File

 

 SOURCE=.\Modules\mathmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_MATHM=\

 	".\./Include\allobjects.h"\

 	".\./Include\mymath.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13179,13 +7807,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -13197,66 +7826,18 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_MATHM=\

-	".\./Include\allobjects.h"\

-	".\./Include\mymath.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\marshal.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_MARSH=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\longintrepr.h"\

 	".\./Include\compile.h"\

-	".\./Include\marshal.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13277,82 +7858,37 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_MARSH=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\longintrepr.h"\

-	".\./Include\compile.h"\

-	".\./Include\marshal.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_MARSH=\

+	".\Python\marshal.h"\

 	

 

 "$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\mappingobject.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_MAPPI=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13373,12 +7909,13 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -13390,62 +7927,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_MAPPI=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\main.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_MAIN_=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13466,13 +7957,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -13484,50 +7976,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_MAIN_=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -13543,9 +7991,6 @@
 # Begin Source File

 

 SOURCE=.\Python\sysmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_SYSMO=\

 	".\./Include\allobjects.h"\

 	".\./Include\sysmodule.h"\

@@ -13553,7 +7998,7 @@
 	".\./Include\modsupport.h"\

 	".\./Include\osdefs.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13574,11 +8019,12 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

@@ -13589,66 +8035,17 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_SYSMO=\

-	".\./Include\allobjects.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\import.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\osdefs.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\socketmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_SOCKE=\

 	".\./Include\Python.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\mytime.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13669,86 +8066,40 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_SOCKE=\

-	".\./Include\Python.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\mytime.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_SOCKE=\

+	".\Modules\mytime.h"\

 	

 

 "$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\selectmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_SELEC=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\myselect.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13769,88 +8120,41 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

-	".\./Include\mytime.h"\

+	

+NODEP_CPP_SELEC=\

+	".\Modules\myselect.h"\

 	

 

 "$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_SELEC=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	".\./Include\myselect.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	".\./Include\mytime.h"\

-	

-

-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\posixmodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_POSIX=\

 	".\./Include\allobjects.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	{$(INCLUDE)}"\sys\STAT.H"\

-	".\./Include\mytime.h"\

 	{$(INCLUDE)}"\unistd.h"\

 	{$(INCLUDE)}"\sys\UTIME.H"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13871,78 +8175,31 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\mymalloc.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

-

-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_POSIX=\

-	".\./Include\allobjects.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	{$(INCLUDE)}"\sys\STAT.H"\

-	".\./Include\mytime.h"\

-	{$(INCLUDE)}"\unistd.h"\

-	{$(INCLUDE)}"\sys\UTIME.H"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

+NODEP_CPP_POSIX=\

+	".\Modules\mytime.h"\

 	

 

 "$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\import.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_IMPORT=\

 	".\./Include\allobjects.h"\

 	".\./Include\node.h"\

@@ -13952,14 +8209,12 @@
 	".\./Include\errcode.h"\

 	".\./Include\sysmodule.h"\

 	".\./Include\bltinmodule.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\marshal.h"\

 	".\./Include\compile.h"\

 	".\./Include\eval.h"\

 	".\./Include\osdefs.h"\

 	".\Python\importdl.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -13980,16 +8235,20 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\pythonrun.h"\

+	".\Include\intrcheck.h"\

 	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

 NODEP_CPP_IMPORT=\

+	".\Python\pythonrun.h"\

+	".\Python\marshal.h"\

 	".\Python\macglue.h"\

 	

 

@@ -13997,76 +8256,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_IMPORT=\

-	".\./Include\allobjects.h"\

-	".\./Include\node.h"\

-	".\./Include\token.h"\

-	".\./Include\graminit.h"\

-	".\./Include\import.h"\

-	".\./Include\errcode.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\bltinmodule.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\marshal.h"\

-	".\./Include\compile.h"\

-	".\./Include\eval.h"\

-	".\./Include\osdefs.h"\

-	".\Python\importdl.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-NODEP_CPP_IMPORT=\

-	".\Python\macglue.h"\

-	

-

-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\operator.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_OPERA=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -14087,13 +8286,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -14105,63 +8305,16 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

-

-DEP_CPP_OPERA=\

-	".\./Include\Python.h"\

-	".\./Include\allobjects.h"\

-	".\./PC\config.h"\

-	".\./Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\accessobject.h"\

-	".\Include\intobject.h"\

-	".\Include\longobject.h"\

-	".\Include\floatobject.h"\

-	".\./Include\complexobject.h"\

-	".\Include\rangeobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\tupleobject.h"\

-	".\Include\listobject.h"\

-	".\Include\mappingobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\moduleobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\classobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\cobject.h"\

-	".\./Include\traceback.h"\

-	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

-	".\./Include\modsupport.h"\

-	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

-	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

-	".\./Include\rename2.h"\

-	".\./Include\thread.h"\

-	

-

-"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\errnomodule.c

-

-!IF  "$(CFG)" == "vc40_nt - Win32 Release"

-

 DEP_CPP_ERRNO=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -14182,13 +8335,14 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

 	".\./Include\import.h"\

 	".\./Include\bltinmodule.h"\

 	".\Include\abstract.h"\

@@ -14200,13 +8354,19 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

+# End Source File

+################################################################################

+# Begin Source File

 

-DEP_CPP_ERRNO=\

+SOURCE=.\Objects\sliceobject.c

+

+!IF  "$(CFG)" == "vc40_nt - Win32 Release"

+

+DEP_CPP_SLICE=\

 	".\./Include\Python.h"\

 	".\./Include\allobjects.h"\

 	".\./PC\config.h"\

-	".\./Include\myproto.h"\

+	".\Include\myproto.h"\

 	".\Include\object.h"\

 	".\Include\objimpl.h"\

 	".\Include\pydebug.h"\

@@ -14227,18 +8387,68 @@
 	".\Include\fileobject.h"\

 	".\Include\cobject.h"\

 	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

 	".\Include\errors.h"\

-	".\./Include\mymalloc.h"\

+	".\Include\mymalloc.h"\

 	".\./Include\modsupport.h"\

 	".\./Include\ceval.h"\

-	".\./Include\pythonrun.h"\

+	".\Include\pythonrun.h"\

 	".\./Include\sysmodule.h"\

-	".\./Include\intrcheck.h"\

+	".\Include\intrcheck.h"\

+	".\./Include\import.h"\

+	".\./Include\bltinmodule.h"\

+	".\Include\abstract.h"\

 	".\./Include\rename2.h"\

 	".\./Include\thread.h"\

 	

 

-"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"

+"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"

+   $(CPP) $(CPP_PROJ) $(SOURCE)

+

+

+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"

+

+DEP_CPP_SLICE=\

+	".\./Include\Python.h"\

+	".\./Include\allobjects.h"\

+	".\./PC\config.h"\

+	".\Include\myproto.h"\

+	".\Include\object.h"\

+	".\Include\objimpl.h"\

+	".\Include\pydebug.h"\

+	".\Include\accessobject.h"\

+	".\Include\intobject.h"\

+	".\Include\longobject.h"\

+	".\Include\floatobject.h"\

+	".\./Include\complexobject.h"\

+	".\Include\rangeobject.h"\

+	".\Include\stringobject.h"\

+	".\Include\tupleobject.h"\

+	".\Include\listobject.h"\

+	".\Include\mappingobject.h"\

+	".\Include\methodobject.h"\

+	".\Include\moduleobject.h"\

+	".\Include\funcobject.h"\

+	".\Include\classobject.h"\

+	".\Include\fileobject.h"\

+	".\Include\cobject.h"\

+	".\./Include\traceback.h"\

+	".\Include\sliceobject.h"\

+	".\Include\errors.h"\

+	".\Include\mymalloc.h"\

+	".\./Include\modsupport.h"\

+	".\./Include\ceval.h"\

+	".\Include\pythonrun.h"\

+	".\./Include\sysmodule.h"\

+	".\Include\intrcheck.h"\

+	".\./Include\import.h"\

+	".\./Include\bltinmodule.h"\

+	".\Include\abstract.h"\

+	".\./Include\rename2.h"\

+	".\./Include\thread.h"\

+	

+

+"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

diff --git a/PC/vc40.mdp b/PC/vc40.mdp
index 6752ba0..1609218 100644
--- a/PC/vc40.mdp
+++ b/PC/vc40.mdp
Binary files differ
diff --git a/PC/vc40.ncb b/PC/vc40.ncb
index 49d1025..95ddb2d 100644
--- a/PC/vc40.ncb
+++ b/PC/vc40.ncb
Binary files differ
diff --git a/PC/wat_dos/pyth_dos.tgt b/PC/wat_dos/pyth_dos.tgt
index 6ed649d..99c0b81 100755
--- a/PC/wat_dos/pyth_dos.tgt
+++ b/PC/wat_dos/pyth_dos.tgt
@@ -74,7 +74,7 @@
 0

 18

 WPickList

-77

+78

 19

 MItem

 3

@@ -987,8 +987,8 @@
 0

 225

 MItem

-28

-..\..\objects\stringobject.c

+27

+..\..\objects\sliceobject.c

 226

 WString

 4

@@ -1005,8 +1005,8 @@
 0

 229

 MItem

-27

-..\..\objects\tupleobject.c

+28

+..\..\objects\stringobject.c

 230

 WString

 4

@@ -1023,8 +1023,8 @@
 0

 233

 MItem

-26

-..\..\objects\typeobject.c

+27

+..\..\objects\tupleobject.c

 234

 WString

 4

@@ -1041,8 +1041,8 @@
 0

 237

 MItem

-22

-..\..\parser\acceler.c

+26

+..\..\objects\typeobject.c

 238

 WString

 4

@@ -1059,8 +1059,8 @@
 0

 241

 MItem

-23

-..\..\parser\grammar1.c

+22

+..\..\parser\acceler.c

 242

 WString

 4

@@ -1077,8 +1077,8 @@
 0

 245

 MItem

-25

-..\..\parser\myreadline.c

+23

+..\..\parser\grammar1.c

 246

 WString

 4

@@ -1095,8 +1095,8 @@
 0

 249

 MItem

-19

-..\..\parser\node.c

+25

+..\..\parser\myreadline.c

 250

 WString

 4

@@ -1113,8 +1113,8 @@
 0

 253

 MItem

-21

-..\..\parser\parser.c

+19

+..\..\parser\node.c

 254

 WString

 4

@@ -1131,8 +1131,8 @@
 0

 257

 MItem

-23

-..\..\parser\parsetok.c

+21

+..\..\parser\parser.c

 258

 WString

 4

@@ -1149,8 +1149,8 @@
 0

 261

 MItem

-24

-..\..\parser\tokenizer.c

+23

+..\..\parser\parsetok.c

 262

 WString

 4

@@ -1167,8 +1167,8 @@
 0

 265

 MItem

-26

-..\..\python\bltinmodule.c

+24

+..\..\parser\tokenizer.c

 266

 WString

 4

@@ -1185,8 +1185,8 @@
 0

 269

 MItem

-20

-..\..\python\ceval.c

+26

+..\..\python\bltinmodule.c

 270

 WString

 4

@@ -1203,8 +1203,8 @@
 0

 273

 MItem

-26

-..\..\python\cgensupport.c

+20

+..\..\python\ceval.c

 274

 WString

 4

@@ -1221,8 +1221,8 @@
 0

 277

 MItem

-22

-..\..\python\compile.c

+26

+..\..\python\cgensupport.c

 278

 WString

 4

@@ -1239,8 +1239,8 @@
 0

 281

 MItem

-21

-..\..\python\errors.c

+22

+..\..\python\compile.c

 282

 WString

 4

@@ -1258,7 +1258,7 @@
 285

 MItem

 21

-..\..\python\frozen.c

+..\..\python\errors.c

 286

 WString

 4

@@ -1275,8 +1275,8 @@
 0

 289

 MItem

-22

-..\..\python\getargs.c

+21

+..\..\python\frozen.c

 290

 WString

 4

@@ -1293,8 +1293,8 @@
 0

 293

 MItem

-26

-..\..\python\getcompiler.c

+22

+..\..\python\getargs.c

 294

 WString

 4

@@ -1311,8 +1311,8 @@
 0

 297

 MItem

-27

-..\..\python\getcopyright.c

+26

+..\..\python\getcompiler.c

 298

 WString

 4

@@ -1329,8 +1329,8 @@
 0

 301

 MItem

-23

-..\..\python\getmtime.c

+27

+..\..\python\getcopyright.c

 302

 WString

 4

@@ -1347,8 +1347,8 @@
 0

 305

 MItem

-21

-..\..\python\getopt.c

+23

+..\..\python\getmtime.c

 306

 WString

 4

@@ -1365,8 +1365,8 @@
 0

 309

 MItem

-26

-..\..\python\getplatform.c

+21

+..\..\python\getopt.c

 310

 WString

 4

@@ -1383,8 +1383,8 @@
 0

 313

 MItem

-25

-..\..\python\getversion.c

+26

+..\..\python\getplatform.c

 314

 WString

 4

@@ -1401,8 +1401,8 @@
 0

 317

 MItem

-23

-..\..\python\graminit.c

+25

+..\..\python\getversion.c

 318

 WString

 4

@@ -1419,8 +1419,8 @@
 0

 321

 MItem

-21

-..\..\python\import.c

+23

+..\..\python\graminit.c

 322

 WString

 4

@@ -1437,8 +1437,8 @@
 0

 325

 MItem

-23

-..\..\python\importdl.c

+21

+..\..\python\import.c

 326

 WString

 4

@@ -1455,8 +1455,8 @@
 0

 329

 MItem

-22

-..\..\python\marshal.c

+23

+..\..\python\importdl.c

 330

 WString

 4

@@ -1473,8 +1473,8 @@
 0

 333

 MItem

-25

-..\..\python\modsupport.c

+22

+..\..\python\marshal.c

 334

 WString

 4

@@ -1491,8 +1491,8 @@
 0

 337

 MItem

-24

-..\..\python\mystrtoul.c

+25

+..\..\python\modsupport.c

 338

 WString

 4

@@ -1510,7 +1510,7 @@
 341

 MItem

 24

-..\..\python\pythonrun.c

+..\..\python\mystrtoul.c

 342

 WString

 4

@@ -1527,8 +1527,8 @@
 0

 345

 MItem

-27

-..\..\python\structmember.c

+24

+..\..\python\pythonrun.c

 346

 WString

 4

@@ -1545,8 +1545,8 @@
 0

 349

 MItem

-24

-..\..\python\sysmodule.c

+27

+..\..\python\structmember.c

 350

 WString

 4

@@ -1564,7 +1564,7 @@
 353

 MItem

 24

-..\..\python\traceback.c

+..\..\python\sysmodule.c

 354

 WString

 4

@@ -1581,8 +1581,8 @@
 0

 357

 MItem

-11

-..\config.c

+24

+..\..\python\traceback.c

 358

 WString

 4

@@ -1597,3 +1597,21 @@
 1

 1

 0

+361

+MItem

+11

+..\config.c

+362

+WString

+4

+COBJ

+363

+WVList

+0

+364

+WVList

+0

+19

+1

+1

+0

diff --git a/PC/wat_os2/pyth_os2.tgt b/PC/wat_os2/pyth_os2.tgt
index f2e6bd3..f511bbf 100755
--- a/PC/wat_os2/pyth_os2.tgt
+++ b/PC/wat_os2/pyth_os2.tgt
@@ -58,7 +58,7 @@
 0

 14

 WPickList

-77

+78

 15

 MItem

 3

@@ -903,8 +903,8 @@
 0

 204

 MItem

-28

-..\..\objects\stringobject.c

+27

+..\..\objects\sliceobject.c

 205

 WString

 4

@@ -921,8 +921,8 @@
 0

 208

 MItem

-27

-..\..\objects\tupleobject.c

+28

+..\..\objects\stringobject.c

 209

 WString

 4

@@ -939,8 +939,8 @@
 0

 212

 MItem

-26

-..\..\objects\typeobject.c

+27

+..\..\objects\tupleobject.c

 213

 WString

 4

@@ -957,8 +957,8 @@
 0

 216

 MItem

-22

-..\..\parser\acceler.c

+26

+..\..\objects\typeobject.c

 217

 WString

 4

@@ -975,8 +975,8 @@
 0

 220

 MItem

-23

-..\..\parser\grammar1.c

+22

+..\..\parser\acceler.c

 221

 WString

 4

@@ -993,8 +993,8 @@
 0

 224

 MItem

-25

-..\..\parser\myreadline.c

+23

+..\..\parser\grammar1.c

 225

 WString

 4

@@ -1011,8 +1011,8 @@
 0

 228

 MItem

-19

-..\..\parser\node.c

+25

+..\..\parser\myreadline.c

 229

 WString

 4

@@ -1029,8 +1029,8 @@
 0

 232

 MItem

-21

-..\..\parser\parser.c

+19

+..\..\parser\node.c

 233

 WString

 4

@@ -1047,8 +1047,8 @@
 0

 236

 MItem

-23

-..\..\parser\parsetok.c

+21

+..\..\parser\parser.c

 237

 WString

 4

@@ -1065,8 +1065,8 @@
 0

 240

 MItem

-24

-..\..\parser\tokenizer.c

+23

+..\..\parser\parsetok.c

 241

 WString

 4

@@ -1083,8 +1083,8 @@
 0

 244

 MItem

-26

-..\..\python\bltinmodule.c

+24

+..\..\parser\tokenizer.c

 245

 WString

 4

@@ -1101,8 +1101,8 @@
 0

 248

 MItem

-20

-..\..\python\ceval.c

+26

+..\..\python\bltinmodule.c

 249

 WString

 4

@@ -1119,8 +1119,8 @@
 0

 252

 MItem

-26

-..\..\python\cgensupport.c

+20

+..\..\python\ceval.c

 253

 WString

 4

@@ -1137,8 +1137,8 @@
 0

 256

 MItem

-22

-..\..\python\compile.c

+26

+..\..\python\cgensupport.c

 257

 WString

 4

@@ -1155,8 +1155,8 @@
 0

 260

 MItem

-21

-..\..\python\errors.c

+22

+..\..\python\compile.c

 261

 WString

 4

@@ -1174,7 +1174,7 @@
 264

 MItem

 21

-..\..\python\frozen.c

+..\..\python\errors.c

 265

 WString

 4

@@ -1191,8 +1191,8 @@
 0

 268

 MItem

-22

-..\..\python\getargs.c

+21

+..\..\python\frozen.c

 269

 WString

 4

@@ -1209,8 +1209,8 @@
 0

 272

 MItem

-26

-..\..\python\getcompiler.c

+22

+..\..\python\getargs.c

 273

 WString

 4

@@ -1227,8 +1227,8 @@
 0

 276

 MItem

-27

-..\..\python\getcopyright.c

+26

+..\..\python\getcompiler.c

 277

 WString

 4

@@ -1245,8 +1245,8 @@
 0

 280

 MItem

-23

-..\..\python\getmtime.c

+27

+..\..\python\getcopyright.c

 281

 WString

 4

@@ -1263,8 +1263,8 @@
 0

 284

 MItem

-21

-..\..\python\getopt.c

+23

+..\..\python\getmtime.c

 285

 WString

 4

@@ -1281,8 +1281,8 @@
 0

 288

 MItem

-26

-..\..\python\getplatform.c

+21

+..\..\python\getopt.c

 289

 WString

 4

@@ -1299,8 +1299,8 @@
 0

 292

 MItem

-25

-..\..\python\getversion.c

+26

+..\..\python\getplatform.c

 293

 WString

 4

@@ -1317,8 +1317,8 @@
 0

 296

 MItem

-23

-..\..\python\graminit.c

+25

+..\..\python\getversion.c

 297

 WString

 4

@@ -1335,8 +1335,8 @@
 0

 300

 MItem

-21

-..\..\python\import.c

+23

+..\..\python\graminit.c

 301

 WString

 4

@@ -1353,8 +1353,8 @@
 0

 304

 MItem

-23

-..\..\python\importdl.c

+21

+..\..\python\import.c

 305

 WString

 4

@@ -1371,8 +1371,8 @@
 0

 308

 MItem

-22

-..\..\python\marshal.c

+23

+..\..\python\importdl.c

 309

 WString

 4

@@ -1389,8 +1389,8 @@
 0

 312

 MItem

-25

-..\..\python\modsupport.c

+22

+..\..\python\marshal.c

 313

 WString

 4

@@ -1407,8 +1407,8 @@
 0

 316

 MItem

-24

-..\..\python\mystrtoul.c

+25

+..\..\python\modsupport.c

 317

 WString

 4

@@ -1426,7 +1426,7 @@
 320

 MItem

 24

-..\..\python\pythonrun.c

+..\..\python\mystrtoul.c

 321

 WString

 4

@@ -1443,8 +1443,8 @@
 0

 324

 MItem

-27

-..\..\python\structmember.c

+24

+..\..\python\pythonrun.c

 325

 WString

 4

@@ -1461,8 +1461,8 @@
 0

 328

 MItem

-24

-..\..\python\sysmodule.c

+27

+..\..\python\structmember.c

 329

 WString

 4

@@ -1480,7 +1480,7 @@
 332

 MItem

 24

-..\..\python\traceback.c

+..\..\python\sysmodule.c

 333

 WString

 4

@@ -1497,8 +1497,8 @@
 0

 336

 MItem

-11

-..\config.c

+24

+..\..\python\traceback.c

 337

 WString

 4

@@ -1513,3 +1513,21 @@
 1

 1

 0

+340

+MItem

+11

+..\config.c

+341

+WString

+4

+COBJ

+342

+WVList

+0

+343

+WVList

+0

+15

+1

+1

+0