| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | ###################################################################### | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | #          Top-Level Makefile for Building Python for OS/2 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This makefile was developed for use with IBM's VisualAge C/C++ | 
					
						
							|  |  |  | # for OS/2 compiler, version 3.0, with Fixpack 8 applied.  It uses | 
					
						
							|  |  |  | # the commercial OpusMAKE tool. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # The output of the build is a largish Python15.DLL containing the | 
					
						
							|  |  |  | # essential modules of Python and a small Python.exe program to start | 
					
						
							|  |  |  | # the interpreter.  When embedding Python within another program, only | 
					
						
							|  |  |  | # Python15.DLL is needed. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # These two binaries can be statically linked with the VisualAge C/C++ | 
					
						
							|  |  |  | # runtime library (producing larger binaries), or dynamically linked | 
					
						
							|  |  |  | # to make smaller ones that require the compiler to be installed on | 
					
						
							|  |  |  | # any system Python is used on. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # History (Most Recent First) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # 20-Nov-97 jrr Cleaned Up for Applying to Distribution | 
					
						
							|  |  |  | # 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4 | 
					
						
							|  |  |  | # 03-Aug-96 jrr Original for Use with Python 1.4 Release | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ###################################################################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################### | 
					
						
							|  |  |  | # Places and Things | 
					
						
							|  |  |  | ################### | 
					
						
							|  |  |  | PY_MODULES      = ..\..\Modules | 
					
						
							|  |  |  | PY_OBJECTS      = ..\..\Objects | 
					
						
							|  |  |  | PY_PARSER       = ..\..\Parser | 
					
						
							|  |  |  | PY_PYTHON       = ..\..\Python | 
					
						
							|  |  |  | PY_INCLUDE      = ..\..\Include | 
					
						
							|  |  |  | PY_INCLUDES     = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Where to Find the IBM TCP/IP Socket Includes and Libraries | 
					
						
							|  |  |  | OS2TCPIP        = C:\MPTN | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Where to Put the .OBJ Files, To Keep Them Out of the Way | 
					
						
							|  |  |  | .PATH.obj	= obj | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Search Path for Include Files | 
					
						
							|  |  |  | PROJINCLUDE	= .;$(OS2TCPIP)\Include;$(PY_INCLUDES) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Place to Search for Sources re OpusMAKE Dependency Generator (Commercial) | 
					
						
							|  |  |  | MKMF_SRCS	= $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .HDRPATH.c	:= $(PROJINCLUDE,;= ) $(.HDRPATH.c) | 
					
						
							|  |  |  | .PATH.c         = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON) | 
					
						
							|  |  |  | OTHERLIBS	= $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################# | 
					
						
							|  |  |  | # Inference Rules | 
					
						
							|  |  |  | ################# | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################### | 
					
						
							|  |  |  | # Python Subsystems | 
					
						
							|  |  |  | ################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # PYTHON is the central core, containing the builtins and interpreter. | 
					
						
							|  |  |  | PYTHON		=                    \ | 
					
						
							|  |  |  |                   BltinModule.obj    \ | 
					
						
							|  |  |  |                   CEval.obj          \ | 
					
						
							|  |  |  |                   Compile.obj        \ | 
					
						
							|  |  |  |                   Errors.obj         \ | 
					
						
							|  |  |  |                   Frozen.obj         \ | 
					
						
							|  |  |  |                   Getargs.obj        \ | 
					
						
							|  |  |  |                   GetCompiler.obj    \ | 
					
						
							|  |  |  |                   GetCopyright.obj   \ | 
					
						
							|  |  |  |                   GetMTime.obj       \ | 
					
						
							|  |  |  |                   GetOpt.obj         \ | 
					
						
							|  |  |  |                   GetPlatform.obj    \ | 
					
						
							|  |  |  |                   GetVersion.obj     \ | 
					
						
							|  |  |  |                   GramInit.obj       \ | 
					
						
							|  |  |  |                   Import.obj         \ | 
					
						
							|  |  |  |                   ImportDL.obj       \ | 
					
						
							|  |  |  |                   Marshal.obj        \ | 
					
						
							|  |  |  |                   ModSupport.obj     \ | 
					
						
							|  |  |  |                   MyStrtoul.obj      \ | 
					
						
							|  |  |  |                   PyState.obj        \ | 
					
						
							|  |  |  |                   PythonRun.obj      \ | 
					
						
							|  |  |  |                   StructMember.obj   \ | 
					
						
							|  |  |  |                   SysModule.obj      \ | 
					
						
							|  |  |  |                   Thread.obj         \ | 
					
						
							|  |  |  |                   TraceBack.obj      \ | 
					
						
							|  |  |  |                   FrozenMain.obj | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Omitted Python Elements (and Reason): | 
					
						
							|  |  |  |   # atof.c          -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # dup2.c          -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # fmod.c          -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # getcwd.c        -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # hypot.c         -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # memmove.c       -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # strdup.c        -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # strerror.c      -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  |   # strtod.c        -- Implementation for Platforms w/o This Function | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # sigcheck.c      -- Primitive Signal Catcher (SignalModule.c Used Instead) | 
					
						
							|  |  |  |   # pyfpe.c         -- Primitive FPE Catcher (Not Referenced by Anyone) | 
					
						
							|  |  |  |   # frozenmain.c | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Python's Internal Parser | 
					
						
							|  |  |  | PARSER		=                   \ | 
					
						
							|  |  |  |                   Acceler.obj       \ | 
					
						
							|  |  |  |                   Grammar1.obj      \ | 
					
						
							|  |  |  |                   MyReadline.obj    \ | 
					
						
							|  |  |  |                   Node.obj          \ | 
					
						
							|  |  |  |                   Parser.obj        \ | 
					
						
							|  |  |  |                   ParseTok.obj      \ | 
					
						
							|  |  |  |                   Tokenizer.obj | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Python Object Types | 
					
						
							|  |  |  | OBJECTS		=                   \ | 
					
						
							|  |  |  |                   Abstract.obj      \ | 
					
						
							|  |  |  |                   ClassObject.obj   \ | 
					
						
							|  |  |  |                   CObject.obj       \ | 
					
						
							|  |  |  |                   ComplexObject.obj \ | 
					
						
							|  |  |  |                   DictObject.obj    \ | 
					
						
							|  |  |  |                   FileObject.obj    \ | 
					
						
							|  |  |  |                   FloatObject.obj   \ | 
					
						
							|  |  |  |                   FrameObject.obj   \ | 
					
						
							|  |  |  |                   FuncObject.obj    \ | 
					
						
							|  |  |  |                   ListObject.obj    \ | 
					
						
							|  |  |  |                   LongObject.obj    \ | 
					
						
							|  |  |  |                   MethodObject.obj  \ | 
					
						
							|  |  |  |                   ModuleObject.obj  \ | 
					
						
							|  |  |  |                   Object.obj        \ | 
					
						
							|  |  |  |                   RangeObject.obj   \ | 
					
						
							|  |  |  |                   SliceObject.obj   \ | 
					
						
							|  |  |  |                   StringObject.obj  \ | 
					
						
							|  |  |  |                   TupleObject.obj   \ | 
					
						
							|  |  |  |                   TypeObject.obj | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Omitted Objects (and Reason): | 
					
						
							|  |  |  |   # xxobject.c      -- Template to Create Your Own Object Types | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Extension Modules (Built-In or as Separate DLLs) | 
					
						
							|  |  |  | MODULES		=                   \ | 
					
						
							|  |  |  |                   ArrayModule.obj   \ | 
					
						
							|  |  |  |                   BinAscii.obj      \ | 
					
						
							|  |  |  |                   CMathModule.obj   \ | 
					
						
							|  |  |  |                   ErrnoModule.obj   \ | 
					
						
							|  |  |  |                   GetBuildInfo.obj  \ | 
					
						
							|  |  |  |                   GetPathP.obj      \ | 
					
						
							|  |  |  |                   Main.obj          \ | 
					
						
							|  |  |  |                   MathModule.obj    \ | 
					
						
							|  |  |  |                   MD5c.obj          \ | 
					
						
							|  |  |  |                   MD5Module.obj     \ | 
					
						
							|  |  |  |                   Operator.obj      \ | 
					
						
							|  |  |  |                   PosixModule.obj   \ | 
					
						
							|  |  |  |                   RegexModule.obj   \ | 
					
						
							|  |  |  |                   RegExpr.obj       \ | 
					
						
							|  |  |  |                   ReopModule.obj    \ | 
					
						
							|  |  |  |                   SelectModule.obj  \ | 
					
						
							|  |  |  |                   SignalModule.obj  \ | 
					
						
							|  |  |  |                   SocketModule.obj  \ | 
					
						
							|  |  |  |                   SoundEx.obj       \ | 
					
						
							|  |  |  |                   StropModule.obj   \ | 
					
						
							|  |  |  |                   StructModule.obj  \ | 
					
						
							|  |  |  |                   TimeModule.obj    \ | 
					
						
							| 
									
										
											  
											
												Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r67295 | benjamin.peterson | 2008-11-20 05:05:12 +0100 (jeu., 20 nov. 2008) | 1 line
  move useful sys.settrace information to the function's documentation from the debugger
........
  r67301 | benjamin.peterson | 2008-11-20 22:25:31 +0100 (jeu., 20 nov. 2008) | 1 line
  fix indentation and a sphinx warning
........
  r67302 | benjamin.peterson | 2008-11-20 22:44:23 +0100 (jeu., 20 nov. 2008) | 1 line
  oops! didn't mean to disable that test
........
  r67318 | amaury.forgeotdarc | 2008-11-21 23:05:48 +0100 (ven., 21 nov. 2008) | 4 lines
  #4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not present.
  Will backport to 2.6
........
  r67330 | georg.brandl | 2008-11-22 09:34:14 +0100 (sam., 22 nov. 2008) | 2 lines
  #4364: fix attribute name on ctypes object.
........
  r67342 | amaury.forgeotdarc | 2008-11-22 20:39:38 +0100 (sam., 22 nov. 2008) | 3 lines
  yuvconvert.c is a part of the "sv" module, an old IRIX thing
  and certainly not useful for any Windows build.
........
  r67343 | amaury.forgeotdarc | 2008-11-22 21:01:18 +0100 (sam., 22 nov. 2008) | 5 lines
  #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from
  stack overflow. But doing this, it always crashes when the stack is nearly full.
  Reviewed by Martin von Loewis. Will backport to 2.6.
........
											
										 
											2008-11-22 22:18:04 +00:00
										 |  |  |                   ThreadModule.obj | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Omitted Modules (and Description/Reason): | 
					
						
							|  |  |  |   # | 
					
						
							|  |  |  |   # Multimedia: | 
					
						
							|  |  |  |   # audioop.c       -- Various Compute Operations on Audio Samples | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Database: | 
					
						
							| 
									
										
										
										
											2008-05-26 10:29:35 +00:00
										 |  |  |   # _dbmmodule.c    -- Wrapper of DBM Database API (Generic Flavor) | 
					
						
							|  |  |  |   # _gdbmmodule.c   -- Wrapper of DBM Database API (GNU Flavor) | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Cryptography: | 
					
						
							|  |  |  |   # cryptmodule.c   -- Simple Wrapper for crypt() Function | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #                  fcntlmodule.obj   \ | 
					
						
							|  |  |  | #                  fpectlmodule.obj  \ | 
					
						
							|  |  |  | #                  fpetestmodule.obj \ | 
					
						
							|  |  |  | # Unix-Specific    getpath.obj       \ | 
					
						
							|  |  |  | #                  grpmodule.obj     \ | 
					
						
							|  |  |  | #                  mpzmodule.obj     \ | 
					
						
							|  |  |  | #                  nismodule.obj     \ | 
					
						
							|  |  |  | #                  parsermodule.obj  \ | 
					
						
							|  |  |  | #                  pwdmodule.obj     \ | 
					
						
							|  |  |  | #                  readline.obj      \ | 
					
						
							|  |  |  | #                  resource.obj      \ | 
					
						
							|  |  |  | #                  syslogmodule.obj  \ | 
					
						
							|  |  |  | #                  termios.obj       \ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # User Interface: | 
					
						
							|  |  |  | #                  _tkinter.obj      \      | 
					
						
							|  |  |  | #                  stdwinmodule.obj  \ | 
					
						
							|  |  |  | #                  cursesmodule.obj  \ | 
					
						
							|  |  |  | #                  tclNotify.obj     \ | 
					
						
							|  |  |  | #                  tkappinit.obj     \ | 
					
						
							|  |  |  |   # flmodule.c      -- Wrapper of FORMS Library (Screen Forms) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # zlibmodule.c    -- Wrapper of ZLib Compression API (GZip Format) | 
					
						
							|  |  |  |   # puremodule.c    -- Wrapper of Purify Debugging API (Probably Non-OS/2) | 
					
						
							|  |  |  |   # xxmodule.c      -- Template to Create Your Own Module | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Standalone Parser Generator Program (Shares Some of Python's Modules) | 
					
						
							|  |  |  | PGEN            =                   \ | 
					
						
							|  |  |  |                   PGenMain.obj      \ | 
					
						
							|  |  |  |                   PGen.obj          \ | 
					
						
							|  |  |  |                   PrintGrammar.obj  \ | 
					
						
							|  |  |  |                   ListNode.obj      \ | 
					
						
							|  |  |  |                   Grammar.obj       \ | 
					
						
							|  |  |  |                   BitSet.obj        \ | 
					
						
							|  |  |  |                   FirstSets.obj     \ | 
					
						
							|  |  |  |                   MetaGrammar.obj | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Omitted Parser Elements (and Reason): | 
					
						
							|  |  |  |   # intrcheck.c     -- Not Referenced by Anyone (?) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################## | 
					
						
							|  |  |  | # Macros and Flags | 
					
						
							|  |  |  | ################## | 
					
						
							|  |  |  | _BASE		= /Q /W2 /I$(PROJINCLUDE) | 
					
						
							|  |  |  | 		# /Q   = Omit IBM Copyright | 
					
						
							|  |  |  | 		# /W2  = Show Warnings/Errors Only | 
					
						
							|  |  |  | 		# /Fi  = Create Precompiled Headers | 
					
						
							|  |  |  | 		# /Si  = Utilize Precompiled Headers | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GEN		= /G4 /Gm /Gd /B"/STACK:360000" | 
					
						
							|  |  |  | 		# /G4  = Generate Code for 486 (Use 386 for Debugger) | 
					
						
							|  |  |  | 		# /Gm  = Use Multithread Runtime | 
					
						
							|  |  |  | 		# /Gd  = Dynamically Load Runtime | 
					
						
							|  |  |  | 		# /Gs  = Remove Code for Stack Probes | 
					
						
							|  |  |  | 		# /Gx  = Remove C++ Exception-Handling Info | 
					
						
							|  |  |  | 		# /Tdp = Generate Code for C++ Templates | 
					
						
							|  |  |  | 		# /Rn  = Generate Code without a Runtime | 
					
						
							|  |  |  | 		# /B"/STACK:n" = Set Stack Size | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _OPT		= /O /Gl | 
					
						
							|  |  |  | 		# /O   = Enable Speed-Optimizations | 
					
						
							|  |  |  | 		# /Ol  = Pass Code Thru Intermediate Linker | 
					
						
							|  |  |  | 		# /Gu  = Advise Linker All Ext Data is ID'd | 
					
						
							|  |  |  | 		# /Gl  = Have Linker Remove Unused Fns | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _DBG		= /DHAVE_CONFIG_H /DUSE_SOCKET | 
					
						
							|  |  |  | 		# /Ti  = Embed Debugger/Analyzer Recs | 
					
						
							|  |  |  | 		# /Tm  = Enable Debug Memory Fns | 
					
						
							|  |  |  | 		# /Tx  = Request Full Dump Upon Exception | 
					
						
							|  |  |  | 		# /DDEBUG = Enable App-Internal Debugging Code | 
					
						
							|  |  |  |                 # /DUSE_SOCKET =  | 
					
						
							|  |  |  |                 # /DUSE_DL_EXPORT =  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _OUT		=  | 
					
						
							|  |  |  | 		# /Fb  = Embed Browser Recs | 
					
						
							|  |  |  | 		# /Gh  = Generate Code for Profiler Hooks | 
					
						
							|  |  |  | 		# /Fl  = Output C/C++ Listing Files | 
					
						
							|  |  |  |                 # /Lf  = Provide Full (Detailed) Listing Files | 
					
						
							|  |  |  | 		# /Fm. = Output Linker Map File | 
					
						
							|  |  |  | 		# /Ft. = Output C++ Template Resolution Files | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _MAP		= /FmNoise\$(.TARGET,B,>.map) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _DLL		= /Ge- | 
					
						
							|  |  |  | _EXE		= /Ge | 
					
						
							|  |  |  | 		# /Ge = Create an EXE, not DLL | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CFLAGS		= $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss | 
					
						
							|  |  |  | CPPFLAGS	= $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ################### | 
					
						
							|  |  |  | # Primary Target(s) | 
					
						
							|  |  |  | ################### | 
					
						
							|  |  |  | All:  obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ############## | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | ############## | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Object Library of All Essential Python Routines | 
					
						
							|  |  |  | PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj | 
					
						
							|  |  |  |         %do "%.lib" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Python15.dll: Compile.obj PyCore.lib Python.def | 
					
						
							|  |  |  |         %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Compile.obj: Compile.c | 
					
						
							|  |  |  |         %do ".c.obj" CFLAGS+=$(_DLL) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Import Library for Using the Python15.dll | 
					
						
							|  |  |  | Python15.lib: Python.def | 
					
						
							|  |  |  |         %do ".def.lib" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Small Program to Start Interpreter in Python15.dll | 
					
						
							|  |  |  | Python.exe: Python.obj Python15.lib | 
					
						
							|  |  |  |         %do "%.exe" CPPFLAGS+=$(_MAP) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #Python.obj: Python.c | 
					
						
							|  |  |  | #        %do ".c.obj" CFLAGS+=$(_EXE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PGen.exe: $(PGEN) PyCore.lib | 
					
						
							|  |  |  |         %do "%.exe" CPPFLAGS+=$(_MAP) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ####################### | 
					
						
							|  |  |  | # Miscellaneous Targets | 
					
						
							|  |  |  | ####################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Remove Intermediate Targets but Leave Executable Binaries | 
					
						
							|  |  |  | clean: | 
					
						
							|  |  |  | 	-- Del /Q $(.PATH.obj)\*.obj		>NUL 2>&1 | 
					
						
							|  |  |  | 	-- Del /Q /Y Noise			>NUL 2>&1 | 
					
						
							|  |  |  | 	-- Del /Q $(ERRS)			>NUL 2>&1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Remove All Targets, Including Final Binaries | 
					
						
							|  |  |  | distclean: clean | 
					
						
							|  |  |  |         -- Del /Q PyCore.lib Python15.lib       >NUL 2>&1 | 
					
						
							|  |  |  |         -- Del /Q Python15.dll Python.exe       >NUL 2>&1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | release: Python.exe Python15.dll Python15.lib | 
					
						
							|  |  |  | 	-- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs | 
					
						
							|  |  |  | 	-- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs | 
					
						
							|  |  |  | 	-- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test: | 
					
						
							|  |  |  |         python ..\..\lib\test\regrtest.py | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Update Dependencies on Targets (Uses OpusMAKE Commercial Product) | 
					
						
							|  |  |  | depend: | 
					
						
							|  |  |  | 	D:\OpusMake\os2mkmf -c -s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### OPUS MKMF:  Do not remove this line!  Generated dependencies follow. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2008-06-10 15:50:56 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 10:29:35 +00:00
										 |  |  | _dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 fileobject.h floatobject.h funcobject.h import.h intobject.h \ | 
					
						
							|  |  |  | 	 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ | 
					
						
							|  |  |  | 	 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ | 
					
						
							|  |  |  | 	 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 10:29:35 +00:00
										 |  |  | _gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | getbuildinfo.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ | 
					
						
							|  |  |  | 	 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longintrepr.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ | 
					
						
							|  |  |  | 	 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ | 
					
						
							|  |  |  | 	 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 floatobject.h funcobject.h import.h intobject.h intrcheck.h \ | 
					
						
							|  |  |  | 	 listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ | 
					
						
							|  |  |  | 	 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ | 
					
						
							|  |  |  | 	 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h graminit.h import.h intobject.h intrcheck.h \ | 
					
						
							|  |  |  | 	 listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ | 
					
						
							|  |  |  | 	 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ | 
					
						
							|  |  |  | 	 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ | 
					
						
							|  |  |  | 	 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ | 
					
						
							|  |  |  | 	 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \ | 
					
						
							|  |  |  | 	 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 floatobject.h funcobject.h import.h intobject.h intrcheck.h \ | 
					
						
							|  |  |  | 	 listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ | 
					
						
							|  |  |  | 	 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ | 
					
						
							|  |  |  | 	 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \ | 
					
						
							|  |  |  | 	 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ | 
					
						
							|  |  |  | 	 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \ | 
					
						
							|  |  |  | 	 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \ | 
					
						
							|  |  |  | 	 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | structmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-25 13:05:15 +00:00
										 |  |  | _threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ | 
					
						
							|  |  |  | 	 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 structmember.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | complexobject.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 structmember.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 frameobject.h funcobject.h import.h intobject.h intrcheck.h \ | 
					
						
							|  |  |  | 	 listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ | 
					
						
							|  |  |  | 	 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ | 
					
						
							|  |  |  | 	 rangeobject.h sliceobject.h stringobject.h structmember.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h structmember.h sysmodule.h traceback.h \ | 
					
						
							|  |  |  | 	 tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | longobject.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longintrepr.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \ | 
					
						
							|  |  |  | 	 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ | 
					
						
							|  |  |  | 	 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \ | 
					
						
							|  |  |  | 	 tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | methodobject.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h token.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | stringobject.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 parser.h pgenheaders.h pydebug.h token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 pgenheaders.h pydebug.h token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 pgenheaders.h pydebug.h token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 pgenheaders.h pydebug.h token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 myproto.h pgen.h pgenheaders.h pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \ | 
					
						
							|  |  |  | 	 tokenizer.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 parsetok.h pgen.h pgenheaders.h pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 pgenheaders.h pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 pydebug.h token.h tokenizer.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | atof.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 floatobject.h funcobject.h import.h intobject.h intrcheck.h \ | 
					
						
							|  |  |  | 	 listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \ | 
					
						
							|  |  |  | 	 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 floatobject.h frameobject.h funcobject.h import.h intobject.h \ | 
					
						
							|  |  |  | 	 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ | 
					
						
							|  |  |  | 	 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ | 
					
						
							|  |  |  | 	 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \ | 
					
						
							|  |  |  | 	 tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h graminit.h import.h intobject.h intrcheck.h \ | 
					
						
							|  |  |  | 	 listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ | 
					
						
							|  |  |  | 	 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 structmember.h sysmodule.h token.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | fmod.obj: pyconfig.h mymath.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 pgenheaders.h pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | hypot.obj: pyconfig.h mymath.h myproto.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 fileobject.h floatobject.h funcobject.h import.h importdl.h \ | 
					
						
							|  |  |  | 	 intobject.h intrcheck.h listobject.h longobject.h marshal.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h token.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h importdl.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ | 
					
						
							|  |  |  | 	 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ | 
					
						
							|  |  |  | 	 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | mystrtoul.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | pyfpe.obj: pyconfig.h pyfpe.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 fileobject.h floatobject.h funcobject.h grammar.h import.h \ | 
					
						
							|  |  |  | 	 intobject.h intrcheck.h listobject.h longobject.h marshal.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ | 
					
						
							|  |  |  | 	 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ | 
					
						
							|  |  |  | 	 traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | strdup.obj: pyconfig.h mymalloc.h myproto.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | strtod.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | structmember.obj: abstract.h ceval.h classobject.h cobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 funcobject.h import.h intobject.h intrcheck.h listobject.h \ | 
					
						
							|  |  |  | 	 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ | 
					
						
							|  |  |  | 	 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ | 
					
						
							|  |  |  | 	 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ | 
					
						
							|  |  |  | 	 stringobject.h structmember.h sysmodule.h traceback.h \ | 
					
						
							|  |  |  | 	 tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 import.h intobject.h intrcheck.h listobject.h longobject.h \ | 
					
						
							|  |  |  | 	 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ | 
					
						
							|  |  |  | 	 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ | 
					
						
							|  |  |  | 	 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | thread.obj: pyconfig.h thread.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 frameobject.h funcobject.h import.h intobject.h intrcheck.h \ | 
					
						
							|  |  |  | 	 listobject.h longobject.h methodobject.h modsupport.h \ | 
					
						
							|  |  |  | 	 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \ | 
					
						
							|  |  |  | 	 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ | 
					
						
							|  |  |  | 	 rangeobject.h sliceobject.h stringobject.h structmember.h \ | 
					
						
							|  |  |  | 	 sysmodule.h traceback.h tupleobject.h |