blob: 0d11b6a29f3c40660e63fa5bdac3104adc7d57c6 [file] [log] [blame]
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001######################################################################
2#
3# Top-Level Makefile for Building Python for OS/2
4#
5# This makefile was developed for use with IBM's VisualAge C/C++
6# for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
7# the commercial OpusMAKE tool.
8#
9# The output of the build is a largish Python15.DLL containing the
10# essential modules of Python and a small Python.exe program to start
11# the interpreter. When embedding Python within another program, only
12# Python15.DLL is needed.
13#
14# These two binaries can be statically linked with the VisualAge C/C++
15# runtime library (producing larger binaries), or dynamically linked
16# to make smaller ones that require the compiler to be installed on
17# any system Python is used on.
18#
19# History (Most Recent First)
20#
21# 20-Nov-97 jrr Cleaned Up for Applying to Distribution
22# 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4
23# 03-Aug-96 jrr Original for Use with Python 1.4 Release
24#
25######################################################################
26
27###################
28# Places and Things
29###################
30PY_MODULES = ..\..\Modules
31PY_OBJECTS = ..\..\Objects
32PY_PARSER = ..\..\Parser
33PY_PYTHON = ..\..\Python
34PY_INCLUDE = ..\..\Include
35PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
36
37# Where to Find the IBM TCP/IP Socket Includes and Libraries
38OS2TCPIP = C:\MPTN
39
40# Where to Put the .OBJ Files, To Keep Them Out of the Way
41.PATH.obj = obj
42
43# Search Path for Include Files
44PROJINCLUDE = .;$(OS2TCPIP)\Include;$(PY_INCLUDES)
45
46# Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
47MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
48
49.HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
50.PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
51OTHERLIBS = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib
52
53#################
54# Inference Rules
55#################
56
57
58###################
59# Python Subsystems
60###################
61
62# PYTHON is the central core, containing the builtins and interpreter.
63PYTHON = \
64 BltinModule.obj \
65 CEval.obj \
66 Compile.obj \
67 Errors.obj \
68 Frozen.obj \
69 Getargs.obj \
70 GetCompiler.obj \
71 GetCopyright.obj \
72 GetMTime.obj \
73 GetOpt.obj \
74 GetPlatform.obj \
75 GetVersion.obj \
76 GramInit.obj \
77 Import.obj \
78 ImportDL.obj \
79 Marshal.obj \
80 ModSupport.obj \
81 MyStrtoul.obj \
82 PyState.obj \
83 PythonRun.obj \
84 StructMember.obj \
85 SysModule.obj \
86 Thread.obj \
87 TraceBack.obj \
88 FrozenMain.obj
89
90# Omitted Python Elements (and Reason):
91 # atof.c -- Implementation for Platforms w/o This Function
92 # dup2.c -- Implementation for Platforms w/o This Function
93 # fmod.c -- Implementation for Platforms w/o This Function
94 # getcwd.c -- Implementation for Platforms w/o This Function
95 # hypot.c -- Implementation for Platforms w/o This Function
96 # memmove.c -- Implementation for Platforms w/o This Function
97 # strdup.c -- Implementation for Platforms w/o This Function
98 # strerror.c -- Implementation for Platforms w/o This Function
99 # strtod.c -- Implementation for Platforms w/o This Function
100
101 # sigcheck.c -- Primitive Signal Catcher (SignalModule.c Used Instead)
102 # pyfpe.c -- Primitive FPE Catcher (Not Referenced by Anyone)
103 # frozenmain.c
104
105# Python's Internal Parser
106PARSER = \
107 Acceler.obj \
108 Grammar1.obj \
109 MyReadline.obj \
110 Node.obj \
111 Parser.obj \
112 ParseTok.obj \
113 Tokenizer.obj
114
115# Python Object Types
116OBJECTS = \
117 Abstract.obj \
118 ClassObject.obj \
119 CObject.obj \
120 ComplexObject.obj \
121 DictObject.obj \
122 FileObject.obj \
123 FloatObject.obj \
124 FrameObject.obj \
125 FuncObject.obj \
126 IntObject.obj \
127 ListObject.obj \
128 LongObject.obj \
129 MethodObject.obj \
130 ModuleObject.obj \
131 Object.obj \
132 RangeObject.obj \
133 SliceObject.obj \
134 StringObject.obj \
135 TupleObject.obj \
136 TypeObject.obj
137
138# Omitted Objects (and Reason):
139 # xxobject.c -- Template to Create Your Own Object Types
140
141# Extension Modules (Built-In or as Separate DLLs)
142MODULES = \
143 ArrayModule.obj \
144 BinAscii.obj \
145 CMathModule.obj \
146 cPickle.obj \
147 cStringIO.obj \
148 ErrnoModule.obj \
149 GetBuildInfo.obj \
150 GetPathP.obj \
151 Main.obj \
152 MathModule.obj \
153 MD5c.obj \
154 MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000155 Operator.obj \
156 PosixModule.obj \
157 RegexModule.obj \
158 RegExpr.obj \
159 ReopModule.obj \
160 SelectModule.obj \
161 SignalModule.obj \
162 SocketModule.obj \
163 SoundEx.obj \
164 StropModule.obj \
165 StructModule.obj \
166 TimeModule.obj \
167 ThreadModule.obj \
168 YUVConvert.obj
169
170# Omitted Modules (and Description/Reason):
171 #
172 # Multimedia:
173 # almodule.c -- Non-OS/2 Audio Channel Facility (?)
174 # cdmodule.c -- Wrapper of Non-OS/2 CD Audio Functions
175 # audioop.c -- Various Compute Operations on Audio Samples
176 # imageop.c -- Various Compute Operations on Video Samples
177 # imgfile.c -- Wrapper of SGI ImageLib API
178 # rgbimgmodule.c -- Non-OS/2 Image Read/Write Capability (Primitive)
179 # sunaudiodev.c -- Wrapper of Sun Audio Device API
180 # clmodule.c -- Wrapper of SGI Image/Audio Compression API
181
182 # Database:
183 # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
184 # bsddbmodule.c -- Wrapper of DBM Database API (BSD Flavor)
185 # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
186
187 # Cryptography:
188 # cryptmodule.c -- Simple Wrapper for crypt() Function
189 # rotormodule.c -- Implementation of Enigma Crypto Based on Rotors
190
191# cgensupport.obj \
192# fcntlmodule.obj \
193# fmmodule.obj \
194# fpectlmodule.obj \
195# fpetestmodule.obj \
196# Unix-Specific getpath.obj \
197# glmodule.obj \
198# grpmodule.obj \
199# mpzmodule.obj \
200# nismodule.obj \
201# parsermodule.obj \
202# pcremodule.obj \
203# pwdmodule.obj \
204# pypcre.obj \
205# readline.obj \
206# resource.obj \
207# sgimodule.obj \
208# svmodule.obj \
209# syslogmodule.obj \
210# termios.obj \
211# timingmodule.obj \
212
213 # User Interface:
214# _tkinter.obj \
215# stdwinmodule.obj \
216# cursesmodule.obj \
217# tclNotify.obj \
218# tkappinit.obj \
219 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
220
221 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
222 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
223 # dlmodule.c -- Some Wierd Form of Data Processing Module
224 # xxmodule.c -- Template to Create Your Own Module
225
226#
227# Standalone Parser Generator Program (Shares Some of Python's Modules)
228PGEN = \
229 PGenMain.obj \
230 PGen.obj \
231 PrintGrammar.obj \
232 ListNode.obj \
233 Grammar.obj \
234 BitSet.obj \
235 FirstSets.obj \
236 MetaGrammar.obj
237
238# Omitted Parser Elements (and Reason):
239 # intrcheck.c -- Not Referenced by Anyone (?)
240
241##################
242# Macros and Flags
243##################
244_BASE = /Q /W2 /I$(PROJINCLUDE)
245 # /Q = Omit IBM Copyright
246 # /W2 = Show Warnings/Errors Only
247 # /Fi = Create Precompiled Headers
248 # /Si = Utilize Precompiled Headers
249
250_GEN = /G4 /Gm /Gd /B"/STACK:360000"
251 # /G4 = Generate Code for 486 (Use 386 for Debugger)
252 # /Gm = Use Multithread Runtime
253 # /Gd = Dynamically Load Runtime
254 # /Gs = Remove Code for Stack Probes
255 # /Gx = Remove C++ Exception-Handling Info
256 # /Tdp = Generate Code for C++ Templates
257 # /Rn = Generate Code without a Runtime
258 # /B"/STACK:n" = Set Stack Size
259
260_OPT = /O /Gl
261 # /O = Enable Speed-Optimizations
262 # /Ol = Pass Code Thru Intermediate Linker
263 # /Gu = Advise Linker All Ext Data is ID'd
264 # /Gl = Have Linker Remove Unused Fns
265
266_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
267 # /Ti = Embed Debugger/Analyzer Recs
268 # /Tm = Enable Debug Memory Fns
269 # /Tx = Request Full Dump Upon Exception
270 # /DDEBUG = Enable App-Internal Debugging Code
271 # /DUSE_SOCKET =
272 # /DUSE_DL_EXPORT =
273
274_OUT =
275 # /Fb = Embed Browser Recs
276 # /Gh = Generate Code for Profiler Hooks
277 # /Fl = Output C/C++ Listing Files
278 # /Lf = Provide Full (Detailed) Listing Files
279 # /Fm. = Output Linker Map File
280 # /Ft. = Output C++ Template Resolution Files
281
282_MAP = /FmNoise\$(.TARGET,B,>.map)
283
284_DLL = /Ge-
285_EXE = /Ge
286 # /Ge = Create an EXE, not DLL
287
288CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
289CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
290
291###################
292# Primary Target(s)
293###################
294All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
295
296##############
297#
298##############
299
300# Object Library of All Essential Python Routines
301PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
302 %do "%.lib"
303
304Python15.dll: Compile.obj PyCore.lib Python.def
305 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
306
307Compile.obj: Compile.c
308 %do ".c.obj" CFLAGS+=$(_DLL)
309
310# Import Library for Using the Python15.dll
311Python15.lib: Python.def
312 %do ".def.lib"
313
314# Small Program to Start Interpreter in Python15.dll
315Python.exe: Python.obj Python15.lib
316 %do "%.exe" CPPFLAGS+=$(_MAP)
317
318#Python.obj: Python.c
319# %do ".c.obj" CFLAGS+=$(_EXE)
320
321PGen.exe: $(PGEN) PyCore.lib
322 %do "%.exe" CPPFLAGS+=$(_MAP)
323
324#######################
325# Miscellaneous Targets
326#######################
327
328# Remove Intermediate Targets but Leave Executable Binaries
329clean:
330 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
331 -- Del /Q /Y Noise >NUL 2>&1
332 -- Del /Q $(ERRS) >NUL 2>&1
333
334# Remove All Targets, Including Final Binaries
335distclean: clean
336 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
337 -- Del /Q Python15.dll Python.exe >NUL 2>&1
338
339release: Python.exe Python15.dll Python15.lib
340 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
341 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
342 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
343
344test:
345 python ..\..\lib\test\regrtest.py
346
347# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
348depend:
349 D:\OpusMake\os2mkmf -c -s
350
351### OPUS MKMF: Do not remove this line! Generated dependencies follow.
352
353_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000354 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000355 import.h intobject.h intrcheck.h listobject.h longobject.h \
356 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
357 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
358 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
359 traceback.h tupleobject.h
360
361almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000362 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000363 import.h intobject.h intrcheck.h listobject.h longobject.h \
364 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
365 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
366 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
367 traceback.h tupleobject.h
368
369arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000370 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000371 import.h intobject.h intrcheck.h listobject.h longobject.h \
372 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
373 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
374 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
375 traceback.h tupleobject.h
376
377audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000378 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000379 import.h intobject.h intrcheck.h listobject.h longobject.h \
380 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
381 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
382 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
383 stringobject.h sysmodule.h traceback.h tupleobject.h
384
385binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000386 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000387 import.h intobject.h intrcheck.h listobject.h longobject.h \
388 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
389 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
390 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
391 traceback.h tupleobject.h
392
393bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000394 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000395 import.h intobject.h intrcheck.h listobject.h longobject.h \
396 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
397 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
398 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
399 traceback.h tupleobject.h
400
401cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000402 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000403 import.h intobject.h intrcheck.h listobject.h longobject.h \
404 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
405 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
406 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
407 traceback.h tupleobject.h
408
409cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000410 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000411 funcobject.h import.h intobject.h intrcheck.h listobject.h \
412 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
413 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
414 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
415 stringobject.h sysmodule.h traceback.h tupleobject.h
416
417clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000418 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000419 import.h intobject.h intrcheck.h listobject.h longobject.h \
420 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
421 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
422 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
423 traceback.h tupleobject.h
424
425cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000426 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000427 import.h intobject.h intrcheck.h listobject.h longobject.h \
428 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
429 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
430 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
431 stringobject.h sysmodule.h traceback.h tupleobject.h
432
433cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000434 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000435 funcobject.h import.h intobject.h intrcheck.h listobject.h \
436 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
437 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
438 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
439 stringobject.h sysmodule.h traceback.h tupleobject.h
440
441cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000442 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000443 import.h intobject.h intrcheck.h listobject.h longobject.h \
444 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
445 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
446 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
447 traceback.h tupleobject.h
448
449cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000450 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000451 funcobject.h import.h intobject.h intrcheck.h listobject.h \
452 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
453 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
454 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
455 stringobject.h sysmodule.h traceback.h tupleobject.h
456
457cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000458 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000459 funcobject.h import.h intobject.h intrcheck.h listobject.h \
460 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
461 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
462 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
463 stringobject.h sysmodule.h traceback.h tupleobject.h
464
465dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000466 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000467 import.h intobject.h intrcheck.h listobject.h longobject.h \
468 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
469 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
470 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
471 traceback.h tupleobject.h
472
473dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000474 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000475 import.h intobject.h intrcheck.h listobject.h longobject.h \
476 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
477 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
478 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
479 traceback.h tupleobject.h
480
481errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000482 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000483 import.h intobject.h intrcheck.h listobject.h longobject.h \
484 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
485 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
486 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
487 traceback.h tupleobject.h
488
489errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000490 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000491 import.h intobject.h intrcheck.h listobject.h longobject.h \
492 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
493 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
494 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
495 traceback.h tupleobject.h
496
497fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000498 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000499 fileobject.h floatobject.h funcobject.h import.h intobject.h \
500 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
501 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
502 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
503 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
504
505flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000506 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000507 import.h intobject.h intrcheck.h listobject.h longobject.h \
508 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
509 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
510 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
511 structmember.h sysmodule.h traceback.h tupleobject.h
512
513fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000514 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000515 import.h intobject.h intrcheck.h listobject.h longobject.h \
516 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
517 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
518 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
519 traceback.h tupleobject.h
520
521fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000522 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000523 funcobject.h import.h intobject.h intrcheck.h listobject.h \
524 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
525 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
526 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
527 stringobject.h sysmodule.h traceback.h tupleobject.h
528
529fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000530 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000531 funcobject.h import.h intobject.h intrcheck.h listobject.h \
532 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
533 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
534 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
535 stringobject.h sysmodule.h traceback.h tupleobject.h
536
537gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000538 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000539 import.h intobject.h intrcheck.h listobject.h longobject.h \
540 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
541 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
542 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
543 traceback.h tupleobject.h
544
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000545getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000546
547getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000548 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000549 import.h intobject.h intrcheck.h listobject.h longobject.h \
550 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
551 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
552 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
553 sysmodule.h traceback.h tupleobject.h
554
555glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000556 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000557 funcobject.h import.h intobject.h intrcheck.h listobject.h \
558 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
559 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
560 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
561 stringobject.h sysmodule.h traceback.h tupleobject.h
562
563grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000564 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000565 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
566 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
567 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
568 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
569 traceback.h tupleobject.h
570
571imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000572 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000573 import.h intobject.h intrcheck.h listobject.h longobject.h \
574 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
575 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
576 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
577 traceback.h tupleobject.h
578
579imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000580 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000581 import.h intobject.h intrcheck.h listobject.h longobject.h \
582 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
583 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
584 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
585 traceback.h tupleobject.h
586
587main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000588 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000589 import.h intobject.h intrcheck.h listobject.h longobject.h \
590 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
591 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
592 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
593 traceback.h tupleobject.h
594
595mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000596 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000597 import.h intobject.h intrcheck.h listobject.h longobject.h \
598 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
599 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
600 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
601 stringobject.h sysmodule.h traceback.h tupleobject.h
602
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000603md5c.obj: pyconfig.h md5.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000604
605md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000606 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000607 import.h intobject.h intrcheck.h listobject.h longobject.h md5.h \
608 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
609 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
610 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
611 traceback.h tupleobject.h
612
Tim Peters1ca12962001-12-04 03:18:48 +0000613mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000614 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000615 funcobject.h import.h intobject.h intrcheck.h listobject.h \
616 longintrepr.h longobject.h methodobject.h modsupport.h \
617 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
618 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
619 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
620
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000621nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000622 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000623 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
624 listobject.h longobject.h methodobject.h modsupport.h \
625 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
626 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
627 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
628
629operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000630 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000631 import.h intobject.h intrcheck.h listobject.h longobject.h \
632 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
633 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
634 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
635 traceback.h tupleobject.h
636
637parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000638 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000639 funcobject.h graminit.h import.h intobject.h intrcheck.h \
640 listobject.h longobject.h methodobject.h modsupport.h \
641 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
642 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
643 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
644 traceback.h tupleobject.h
645
646pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000647 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000648 import.h intobject.h intrcheck.h listobject.h longobject.h \
649 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
650 object.h objimpl.h pcre-internal.h pcre.h pydebug.h pyerrors.h \
651 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
652 stringobject.h sysmodule.h traceback.h tupleobject.h
653
654posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000655 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000656 import.h intobject.h intrcheck.h listobject.h longobject.h \
657 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
658 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
659 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
660 sysmodule.h traceback.h tupleobject.h
661
662posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000663 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000664 import.h intobject.h intrcheck.h listobject.h longobject.h \
665 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
666 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
667 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
668 sysmodule.h traceback.h tupleobject.h
669
670puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000671 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000672 import.h intobject.h intrcheck.h listobject.h longobject.h \
673 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
674 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
675 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
676 traceback.h tupleobject.h
677
678pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000679 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000680 import.h intobject.h intrcheck.h listobject.h longobject.h \
681 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
682 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
683 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
684 sysmodule.h traceback.h tupleobject.h
685
686pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000687 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000688 graminit.h import.h intobject.h intrcheck.h listobject.h \
689 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
690 myproto.h object.h objimpl.h pcre-internal.h pcre.h pydebug.h \
691 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
692 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
693
694readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000695 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000696 import.h intobject.h intrcheck.h listobject.h longobject.h \
697 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
698 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
699 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
700 traceback.h tupleobject.h
701
702regexmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000703 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000704 import.h intobject.h intrcheck.h listobject.h longobject.h \
705 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
706 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
707 pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \
708 sysmodule.h traceback.h tupleobject.h
709
Tim Peters1ca12962001-12-04 03:18:48 +0000710regexpr.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000711 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000712 funcobject.h import.h intobject.h intrcheck.h listobject.h \
713 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
714 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
715 pystate.h python.h pythonrun.h rangeobject.h regexpr.h \
716 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
717
718reopmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000719 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000720 import.h intobject.h intrcheck.h listobject.h longobject.h \
721 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
722 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
723 pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \
724 sysmodule.h traceback.h tupleobject.h
725
726resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000727 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000728 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
729 listobject.h longobject.h methodobject.h modsupport.h \
730 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
731 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
732 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
733
734rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000735 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000736 funcobject.h import.h intobject.h intrcheck.h listobject.h \
737 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
738 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
739 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
740 stringobject.h sysmodule.h traceback.h tupleobject.h
741
742rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000743 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000744 import.h intobject.h intrcheck.h listobject.h longobject.h \
745 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
746 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
747 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
748 stringobject.h sysmodule.h traceback.h tupleobject.h
749
750selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000751 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000752 funcobject.h import.h intobject.h intrcheck.h listobject.h \
753 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
754 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
755 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
756 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
757
758sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000759 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000760 import.h intobject.h intrcheck.h listobject.h longobject.h \
761 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
762 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
763 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
764 traceback.h tupleobject.h
765
766signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000767 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000768 funcobject.h import.h intobject.h intrcheck.h listobject.h \
769 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
770 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
771 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
772 stringobject.h sysmodule.h traceback.h tupleobject.h
773
774socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
775 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000776 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000777 funcobject.h import.h intobject.h intrcheck.h listobject.h \
778 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
779 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
780 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
781 stringobject.h sysmodule.h traceback.h tupleobject.h
782
783soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000784 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000785 import.h intobject.h intrcheck.h listobject.h longobject.h \
786 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
787 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
788 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
789 traceback.h tupleobject.h
790
791stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000792 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000793 funcobject.h import.h intobject.h intrcheck.h listobject.h \
794 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
795 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
796 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
797 stringobject.h sysmodule.h traceback.h tupleobject.h
798
799stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000800 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000801 import.h intobject.h intrcheck.h listobject.h longobject.h \
802 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
803 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
804 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
805 traceback.h tupleobject.h
806
807structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000808 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000809 funcobject.h import.h intobject.h intrcheck.h listobject.h \
810 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
811 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
812 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
813 stringobject.h sysmodule.h traceback.h tupleobject.h
814
815sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000816 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000817 fileobject.h floatobject.h funcobject.h import.h intobject.h \
818 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
819 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
820 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
821 sliceobject.h stringobject.h structmember.h sysmodule.h \
822 traceback.h tupleobject.h
823
824svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000825 cobject.h compile.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000826 fileobject.h floatobject.h funcobject.h import.h intobject.h \
827 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
828 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
829 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
830 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h \
831 yuv.h
832
833syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000834 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000835 funcobject.h import.h intobject.h intrcheck.h listobject.h \
836 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
837 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
838 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
839 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
840
841termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000842 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000843 import.h intobject.h intrcheck.h listobject.h longobject.h \
844 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
845 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
846 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
847 traceback.h tupleobject.h
848
849threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000850 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000851 funcobject.h import.h intobject.h intrcheck.h listobject.h \
852 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
853 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
854 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
855 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
856
857timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000858 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000859 import.h intobject.h intrcheck.h listobject.h longobject.h \
860 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
861 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
862 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
863 sysmodule.h traceback.h tupleobject.h
864
865timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000866 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000867 funcobject.h import.h intobject.h intrcheck.h listobject.h \
868 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
869 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
870 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
871 stringobject.h sysmodule.h timing.h traceback.h tupleobject.h
872
873xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000874 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000875 import.h intobject.h intrcheck.h listobject.h longobject.h \
876 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
877 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
878 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
879 traceback.h tupleobject.h
880
881yuvconvert.obj: yuv.h
882
883zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000884 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000885 import.h intobject.h intrcheck.h listobject.h longobject.h \
886 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
887 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
888 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
889 traceback.h tupleobject.h
890
891abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000892 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000893 import.h intobject.h intrcheck.h listobject.h longobject.h \
894 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
895 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
896 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
897 traceback.h tupleobject.h
898
899classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000900 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000901 import.h intobject.h intrcheck.h listobject.h longobject.h \
902 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
903 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
904 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
905 structmember.h sysmodule.h traceback.h tupleobject.h
906
907cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000908 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000909 import.h intobject.h intrcheck.h listobject.h longobject.h \
910 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
911 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
912 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
913 traceback.h tupleobject.h
914
915complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000916 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000917 funcobject.h import.h intobject.h intrcheck.h listobject.h \
918 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
919 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
920 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
921 stringobject.h sysmodule.h traceback.h tupleobject.h
922
923dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000924 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000925 import.h intobject.h intrcheck.h listobject.h longobject.h \
926 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
927 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
928 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
929 traceback.h tupleobject.h
930
931fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000932 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000933 import.h intobject.h intrcheck.h listobject.h longobject.h \
934 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
935 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
936 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
937 structmember.h sysmodule.h traceback.h tupleobject.h
938
939floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000940 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000941 import.h intobject.h intrcheck.h listobject.h longobject.h \
942 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
943 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
944 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
945 stringobject.h sysmodule.h traceback.h tupleobject.h
946
947frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000948 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000949 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
950 listobject.h longobject.h methodobject.h modsupport.h \
951 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
952 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
953 rangeobject.h sliceobject.h stringobject.h structmember.h \
954 sysmodule.h traceback.h tupleobject.h
955
956funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000957 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000958 funcobject.h import.h intobject.h intrcheck.h listobject.h \
959 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
960 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
961 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
962 stringobject.h structmember.h sysmodule.h traceback.h \
963 tupleobject.h
964
965intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000966 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000967 import.h intobject.h intrcheck.h listobject.h longobject.h \
968 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
969 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
970 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
971 traceback.h tupleobject.h
972
973listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000974 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000975 import.h intobject.h intrcheck.h listobject.h longobject.h \
976 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
977 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
978 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
979 traceback.h tupleobject.h
980
Tim Peters1ca12962001-12-04 03:18:48 +0000981longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000982 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000983 funcobject.h import.h intobject.h intrcheck.h listobject.h \
984 longintrepr.h longobject.h methodobject.h modsupport.h \
985 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
986 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
987 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
988 tupleobject.h
989
990methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000991 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000992 funcobject.h import.h intobject.h intrcheck.h listobject.h \
993 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
994 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
995 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
996 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
997
998moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000999 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001000 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1001 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1002 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1003 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1004 stringobject.h sysmodule.h traceback.h tupleobject.h
1005
1006object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001007 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001008 import.h intobject.h intrcheck.h listobject.h longobject.h \
1009 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1010 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1011 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1012 traceback.h tupleobject.h
1013
1014rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001015 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001016 import.h intobject.h intrcheck.h listobject.h longobject.h \
1017 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1018 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1019 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1020 traceback.h tupleobject.h
1021
1022sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001023 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001024 import.h intobject.h intrcheck.h listobject.h longobject.h \
1025 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1026 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1027 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1028 traceback.h tupleobject.h
1029
1030stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001031 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001032 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1033 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1034 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1035 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1036 stringobject.h sysmodule.h traceback.h tupleobject.h
1037
1038tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001039 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001040 import.h intobject.h intrcheck.h listobject.h longobject.h \
1041 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1042 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1043 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1044 traceback.h tupleobject.h
1045
1046typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001047 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001048 import.h intobject.h intrcheck.h listobject.h longobject.h \
1049 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1050 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1051 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1052 traceback.h tupleobject.h
1053
1054xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001055 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001056 import.h intobject.h intrcheck.h listobject.h longobject.h \
1057 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1058 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1059 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1060 traceback.h tupleobject.h
1061
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001062acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001063 parser.h pgenheaders.h pydebug.h token.h
1064
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001065bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001066
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001067firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001068 pgenheaders.h pydebug.h token.h
1069
Tim Peters1ca12962001-12-04 03:18:48 +00001070grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001071 pgenheaders.h pydebug.h token.h
1072
Tim Peters1ca12962001-12-04 03:18:48 +00001073grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001074 pgenheaders.h pydebug.h token.h
1075
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001076intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001077
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001078listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001079 token.h
1080
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001081metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001082 myproto.h pgen.h pgenheaders.h pydebug.h
1083
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001084myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001085
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001086node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001087
Tim Peters1ca12962001-12-04 03:18:48 +00001088parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001089 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
1090
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001091parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001092 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
1093 tokenizer.h
1094
Tim Peters1ca12962001-12-04 03:18:48 +00001095pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001096 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
1097
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001098pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001099 parsetok.h pgen.h pgenheaders.h pydebug.h
1100
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001101printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001102 pgenheaders.h pydebug.h
1103
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001104tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001105 pydebug.h token.h tokenizer.h
1106
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001107atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001108
1109bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001110 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001111 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
1112 listobject.h longobject.h methodobject.h modsupport.h \
1113 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
1114 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1115 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1116 traceback.h tupleobject.h
1117
1118ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001119 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001120 floatobject.h frameobject.h funcobject.h import.h intobject.h \
1121 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
1122 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
1123 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1124 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
1125 tupleobject.h
1126
1127compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001128 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001129 funcobject.h graminit.h import.h intobject.h intrcheck.h \
1130 listobject.h longobject.h methodobject.h modsupport.h \
1131 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
1132 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1133 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1134 structmember.h sysmodule.h token.h traceback.h tupleobject.h
1135
1136errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001137 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001138 import.h intobject.h intrcheck.h listobject.h longobject.h \
1139 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1140 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1141 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1142 traceback.h tupleobject.h
1143
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001144fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001145
1146frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001147 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001148 import.h intobject.h intrcheck.h listobject.h longobject.h \
1149 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1150 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1151 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1152 traceback.h tupleobject.h
1153
1154frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001155 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001156 import.h intobject.h intrcheck.h listobject.h longobject.h \
1157 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1158 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1159 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1160 traceback.h tupleobject.h
1161
1162getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001163 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001164 import.h intobject.h intrcheck.h listobject.h longobject.h \
1165 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1166 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1167 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1168 traceback.h tupleobject.h
1169
1170getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001171 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001172 import.h intobject.h intrcheck.h listobject.h longobject.h \
1173 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1174 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1175 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1176 traceback.h tupleobject.h
1177
1178getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001179 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001180 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1181 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1182 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1183 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1184 stringobject.h sysmodule.h traceback.h tupleobject.h
1185
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001186getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001187
1188getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001189 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001190 import.h intobject.h intrcheck.h listobject.h longobject.h \
1191 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1192 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1193 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1194 traceback.h tupleobject.h
1195
1196getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001197 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001198 import.h intobject.h intrcheck.h listobject.h longobject.h \
1199 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1200 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
1201 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1202 stringobject.h sysmodule.h traceback.h tupleobject.h
1203
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001204graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001205 pgenheaders.h pydebug.h
1206
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001207hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001208
1209import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001210 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001211 fileobject.h floatobject.h funcobject.h import.h importdl.h \
1212 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1213 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1214 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1215 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1216 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
1217
1218importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001219 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001220 import.h importdl.h intobject.h intrcheck.h listobject.h \
1221 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1222 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1223 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1224 stringobject.h sysmodule.h traceback.h tupleobject.h
1225
1226marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001227 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001228 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1229 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
1230 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
1231 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
1232 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
1233
1234modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001235 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001236 import.h intobject.h intrcheck.h listobject.h longobject.h \
1237 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1238 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1239 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1240 traceback.h tupleobject.h
1241
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001242mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001243
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001244pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001245
1246pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001247 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001248 import.h intobject.h intrcheck.h listobject.h longobject.h \
1249 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1250 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1251 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1252 traceback.h tupleobject.h
1253
1254pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001255 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001256 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1257 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1258 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1259 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1260 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1261 stringobject.h sysmodule.h traceback.h tupleobject.h
1262
1263sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001264 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001265 import.h intobject.h intrcheck.h listobject.h longobject.h \
1266 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1267 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1268 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1269 traceback.h tupleobject.h
1270
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001271strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001272
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001273strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001274
1275structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001276 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001277 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1278 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1279 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1280 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1281 stringobject.h structmember.h sysmodule.h traceback.h \
1282 tupleobject.h
1283
1284sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001285 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001286 import.h intobject.h intrcheck.h listobject.h longobject.h \
1287 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1288 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1289 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1290 sysmodule.h traceback.h tupleobject.h
1291
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001292thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001293
1294traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001295 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001296 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1297 listobject.h longobject.h methodobject.h modsupport.h \
1298 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1299 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1300 rangeobject.h sliceobject.h stringobject.h structmember.h \
1301 sysmodule.h traceback.h tupleobject.h