1 ######################################################################
3 # Top-Level Makefile for Building Python for OS/2
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.
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.
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.
19 # History (Most Recent First)
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
25 ######################################################################
30 PY_MODULES = ..\..\Modules
31 PY_OBJECTS = ..\..\Objects
32 PY_PARSER = ..\..\Parser
33 PY_PYTHON = ..\..\Python
34 PY_INCLUDE = ..\..\Include
35 PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
37 # Where to Find the IBM TCP/IP Socket Includes and Libraries
40 # Where to Put the .OBJ Files, To Keep Them Out of the Way
43 # Search Path for Include Files
44 PROJINCLUDE = .;$(OS2TCPIP)\Include;$(PY_INCLUDES)
46 # Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
47 MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
49 .HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
50 .PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
51 OTHERLIBS = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib
62 # PYTHON is the central core, containing the builtins and interpreter.
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
101 # sigcheck.c -- Primitive Signal Catcher (SignalModule.c Used Instead)
102 # pyfpe.c -- Primitive FPE Catcher (Not Referenced by Anyone)
105 # Python's Internal Parser
115 # Python Object Types
138 # Omitted Objects (and Reason):
139 # xxobject.c -- Template to Create Your Own Object Types
141 # Extension Modules (Built-In or as Separate DLLs)
170 # Omitted Modules (and Description/Reason):
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
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)
188 # cryptmodule.c -- Simple Wrapper for crypt() Function
189 # rotormodule.c -- Implementation of Enigma Crypto Based on Rotors
195 # fpetestmodule.obj \
196 # Unix-Specific getpath.obj \
219 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
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
227 # Standalone Parser Generator Program (Shares Some of Python's Modules)
238 # Omitted Parser Elements (and Reason):
239 # intrcheck.c -- Not Referenced by Anyone (?)
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
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
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
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
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
282 _MAP = /FmNoise\$(.TARGET,B,>.map)
286 # /Ge = Create an EXE, not DLL
288 CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
289 CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
294 All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
300 # Object Library of All Essential Python Routines
301 PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
304 Python15.dll: Compile.obj PyCore.lib Python.def
305 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
307 Compile.obj: Compile.c
308 %do ".c.obj" CFLAGS+=$(_DLL)
310 # Import Library for Using the Python15.dll
311 Python15.lib: Python.def
314 # Small Program to Start Interpreter in Python15.dll
315 Python.exe: Python.obj Python15.lib
316 %do "%.exe" CPPFLAGS+=$(_MAP)
318 #Python.obj: Python.c
319 # %do ".c.obj" CFLAGS+=$(_EXE)
321 PGen.exe: $(PGEN) PyCore.lib
322 %do "%.exe" CPPFLAGS+=$(_MAP)
324 #######################
325 # Miscellaneous Targets
326 #######################
328 # Remove Intermediate Targets but Leave Executable Binaries
330 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
331 -- Del /Q /Y Noise >NUL 2>&1
332 -- Del /Q $(ERRS) >NUL 2>&1
334 # Remove All Targets, Including Final Binaries
336 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
337 -- Del /Q Python15.dll Python.exe >NUL 2>&1
339 release: 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
345 python ..\..\lib\test\regrtest.py
347 # Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
349 D:\OpusMake\os2mkmf -c -s
351 ### OPUS MKMF: Do not remove this line! Generated dependencies follow.
353 _tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
354 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
355 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
361 almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
362 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
363 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
369 arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
370 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
371 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
377 audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
378 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
379 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
385 binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
386 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
387 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
393 bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
394 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
395 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
401 cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
402 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
403 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
409 cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
410 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
411 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
417 clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
418 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
419 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
425 cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
426 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
427 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
433 cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
434 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
435 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
441 cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
442 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
443 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
449 cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
450 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
451 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
457 cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
458 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
459 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
465 dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
466 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
467 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
473 dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
474 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
475 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
481 errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
482 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
483 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
489 errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
490 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
491 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
497 fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
498 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
499 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
505 flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
506 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
507 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
513 fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
514 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
515 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
521 fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
522 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
523 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
529 fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
530 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
531 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
537 gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
538 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
539 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
545 getbuildinfo.obj: pyconfig.h
547 getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
548 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
549 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
555 glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
556 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
557 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
563 grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
564 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
565 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
571 imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
572 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
573 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
579 imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
580 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
581 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
587 main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
588 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
589 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
595 mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
596 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
597 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
603 md5c.obj: pyconfig.h md5.h
605 md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
606 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
607 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
613 mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
614 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
615 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
621 nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
622 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
623 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
629 operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
630 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
631 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
637 parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
638 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
639 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
646 pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
647 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
648 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
654 posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
655 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
656 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
662 posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
663 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
664 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
670 puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
671 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
672 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
678 pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
679 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
680 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
686 pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
687 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
688 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
694 readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
695 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
696 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
702 regexmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
703 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
704 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
710 regexpr.obj: abstract.h ceval.h classobject.h cobject.h \
711 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
712 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
718 reopmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
719 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
720 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
726 resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
727 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
728 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
734 rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \
735 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
736 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
742 rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
743 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
744 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
750 selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
751 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
752 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
758 sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
759 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
760 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
766 signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
767 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
768 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
774 socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
775 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
776 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
777 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
783 soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
784 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
785 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
791 stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \
792 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
793 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
799 stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
800 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
801 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
807 structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
808 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
809 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
815 sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
816 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
817 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
824 svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
825 cobject.h compile.h complexobject.h pyconfig.h dictobject.h \
826 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 \
833 syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
834 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
835 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
841 termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
842 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
843 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
849 threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
850 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
851 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
857 timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
858 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
859 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
865 timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \
866 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
867 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
873 xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
874 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
875 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
881 yuvconvert.obj: yuv.h
883 zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
884 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
885 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
891 abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
892 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
893 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
899 classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
900 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
901 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
907 cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
908 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
909 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
915 complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
916 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
917 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
923 dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
924 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
925 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
931 fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
932 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
933 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
939 floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
940 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
941 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
947 frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
948 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
949 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
956 funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
957 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
958 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 \
965 intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
966 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
967 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
973 listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
974 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
975 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
981 longobject.obj: abstract.h ceval.h classobject.h cobject.h \
982 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
983 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 \
990 methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
991 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
992 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
998 moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
999 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1000 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
1006 object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1007 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1008 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
1014 rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1015 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1016 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
1022 sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1023 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1024 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
1030 stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
1031 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1032 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
1038 tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1039 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1040 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
1046 typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1047 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1048 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
1054 xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1055 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1056 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
1062 acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
1063 parser.h pgenheaders.h pydebug.h token.h
1065 bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
1067 firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1068 pgenheaders.h pydebug.h token.h
1070 grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1071 pgenheaders.h pydebug.h token.h
1073 grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1074 pgenheaders.h pydebug.h token.h
1076 intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
1078 listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
1081 metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
1082 myproto.h pgen.h pgenheaders.h pydebug.h
1084 myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
1086 node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
1088 parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
1089 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
1091 parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
1092 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
1095 pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
1096 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
1098 pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
1099 parsetok.h pgen.h pgenheaders.h pydebug.h
1101 printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1102 pgenheaders.h pydebug.h
1104 tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
1105 pydebug.h token.h tokenizer.h
1107 atof.obj: pyconfig.h
1109 bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1110 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
1111 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
1118 ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1119 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
1120 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 \
1127 compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1128 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1129 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
1136 errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1137 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1138 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
1144 fmod.obj: pyconfig.h mymath.h
1146 frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1147 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1148 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
1154 frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1155 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1156 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
1162 getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1163 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1164 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
1170 getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1171 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1172 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
1178 getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
1179 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1180 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
1186 getmtime.obj: pyconfig.h
1188 getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1189 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1190 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
1196 getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1197 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1198 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
1204 graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1205 pgenheaders.h pydebug.h
1207 hypot.obj: pyconfig.h mymath.h myproto.h
1209 import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1210 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
1211 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
1218 importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1219 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1220 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
1226 marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1227 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1228 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
1234 modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1235 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1236 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
1242 mystrtoul.obj: pyconfig.h
1244 pyfpe.obj: pyconfig.h pyfpe.h
1246 pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1247 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1248 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
1254 pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
1255 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
1256 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
1263 sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1264 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1265 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
1271 strdup.obj: pyconfig.h mymalloc.h myproto.h
1273 strtod.obj: pyconfig.h
1275 structmember.obj: abstract.h ceval.h classobject.h cobject.h \
1276 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1277 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 \
1284 sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1285 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1286 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
1292 thread.obj: pyconfig.h thread.h
1294 traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1295 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1296 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