mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
New versions of almost all files.
This commit is contained in:
parent
2b65444b9f
commit
950a12602f
23 changed files with 22150 additions and 15872 deletions
|
@ -34,11 +34,13 @@ extern void initaudioop();
|
||||||
extern void initbinascii();
|
extern void initbinascii();
|
||||||
extern void initcmath();
|
extern void initcmath();
|
||||||
extern void initenvironment();
|
extern void initenvironment();
|
||||||
|
extern void initerrno();
|
||||||
extern void initimageop();
|
extern void initimageop();
|
||||||
extern void initmath();
|
extern void initmath();
|
||||||
extern void initmd5();
|
extern void initmd5();
|
||||||
extern void initnew();
|
extern void initnew();
|
||||||
extern void initnt();
|
extern void initnt();
|
||||||
|
extern void initoperator();
|
||||||
extern void initregex();
|
extern void initregex();
|
||||||
extern void initrgbimg();
|
extern void initrgbimg();
|
||||||
extern void initrotor();
|
extern void initrotor();
|
||||||
|
@ -64,11 +66,13 @@ struct _inittab inittab[] = {
|
||||||
{"binascii", initbinascii},
|
{"binascii", initbinascii},
|
||||||
{"cmath", initcmath},
|
{"cmath", initcmath},
|
||||||
{"environment", initenvironment},
|
{"environment", initenvironment},
|
||||||
|
{"errno", initerrno},
|
||||||
{"imageop", initimageop},
|
{"imageop", initimageop},
|
||||||
{"math", initmath},
|
{"math", initmath},
|
||||||
{"md5", initmd5},
|
{"md5", initmd5},
|
||||||
{"new", initnew},
|
{"new", initnew},
|
||||||
{"nt", initnt}, /* Use the NT os functions, not posix */
|
{"nt", initnt}, /* Use the NT os functions, not posix */
|
||||||
|
{"operator", initoperator},
|
||||||
{"regex", initregex},
|
{"regex", initregex},
|
||||||
{"rgbimg", initrgbimg},
|
{"rgbimg", initrgbimg},
|
||||||
{"rotor", initrotor},
|
{"rotor", initrotor},
|
||||||
|
|
51
PC/config.h
51
PC/config.h
|
@ -10,6 +10,22 @@ This is a manually maintained version used for the Watcom,
|
||||||
Borland and and Microsoft Visual C++ compilers. It is a
|
Borland and and Microsoft Visual C++ compilers. It is a
|
||||||
standard part of the Python distribution.
|
standard part of the Python distribution.
|
||||||
|
|
||||||
|
WINDOWS DEFINES:
|
||||||
|
The code specific to Windows should be wrapped around one of
|
||||||
|
the following #defines
|
||||||
|
|
||||||
|
MS_WIN32 - Code specific to the MS Win32 API
|
||||||
|
MS_WIN16 - Code specific to the old 16 bit Windows API.
|
||||||
|
MS_WINDOWS - Code specific to Windows, but all versions.
|
||||||
|
MS_COREDLL - Code if the Python core is built as a DLL.
|
||||||
|
|
||||||
|
Note that the old defines "NT" and "WIN32" are still supported, but
|
||||||
|
will soon be dropped.
|
||||||
|
|
||||||
|
Also note that neither "_M_IX86" or "_MSC_VER" should be used for
|
||||||
|
any purpose other than "Windows Intel x86 specific" and "Microsoft
|
||||||
|
compiler specific". Therefore, these should be very rare.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -25,6 +41,8 @@ standard part of the Python distribution.
|
||||||
#define DONT_HAVE_SIG_ALARM
|
#define DONT_HAVE_SIG_ALARM
|
||||||
#define DONT_HAVE_SIG_PAUSE
|
#define DONT_HAVE_SIG_PAUSE
|
||||||
#define LONG_BIT 32
|
#define LONG_BIT 32
|
||||||
|
#define PREFIX ""
|
||||||
|
#define EXEC_PREFIX ""
|
||||||
|
|
||||||
/* Microsoft C defines _MSC_VER */
|
/* Microsoft C defines _MSC_VER */
|
||||||
|
|
||||||
|
@ -33,12 +51,20 @@ standard part of the Python distribution.
|
||||||
#define NT /* NT is obsolete - please use MS_WIN32 instead */
|
#define NT /* NT is obsolete - please use MS_WIN32 instead */
|
||||||
#define MS_WIN32
|
#define MS_WIN32
|
||||||
#define MS_WINDOWS
|
#define MS_WINDOWS
|
||||||
|
|
||||||
|
#ifdef MS_COREDLL /* Python core is in a DLL */
|
||||||
|
#define main Py_Main
|
||||||
|
#ifndef USE_DL_EXPORT
|
||||||
|
#define USE_DL_IMPORT
|
||||||
|
#endif /* !USE_DL_EXPORT */
|
||||||
|
#endif /* MS_COREDLL */
|
||||||
|
|
||||||
#ifdef _M_IX86
|
#ifdef _M_IX86
|
||||||
#define COMPILER "[MSC 32 bit (Intel)]"
|
#define COMPILER "[MSC 32 bit (Intel)]"
|
||||||
#else
|
#else
|
||||||
#define COMPILER "[MSC (Unknown)]"
|
#define COMPILER "[MSC (Unknown)]"
|
||||||
#endif
|
#endif
|
||||||
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win"
|
#define PYTHONPATH ".\\lib;.\\lib\\win"
|
||||||
typedef int pid_t;
|
typedef int pid_t;
|
||||||
#define WORD_BIT 32
|
#define WORD_BIT 32
|
||||||
#pragma warning(disable:4113)
|
#pragma warning(disable:4113)
|
||||||
|
@ -48,7 +74,6 @@ typedef int pid_t;
|
||||||
#define HAVE_STRFTIME
|
#define HAVE_STRFTIME
|
||||||
#define NT_THREADS
|
#define NT_THREADS
|
||||||
#define WITH_THREAD
|
#define WITH_THREAD
|
||||||
#define _COMPLEX_DEFINED
|
|
||||||
#ifndef NETSCAPE_PI
|
#ifndef NETSCAPE_PI
|
||||||
#define USE_SOCKET
|
#define USE_SOCKET
|
||||||
#endif
|
#endif
|
||||||
|
@ -58,7 +83,8 @@ typedef int pid_t;
|
||||||
#ifdef USE_DL_EXPORT
|
#ifdef USE_DL_EXPORT
|
||||||
#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
|
#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
|
||||||
#endif
|
#endif
|
||||||
#endif /* MS_WIN32 */
|
|
||||||
|
#endif /* _MSC_VER && > 850 */
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER <= 850
|
#if defined(_MSC_VER) && _MSC_VER <= 850
|
||||||
/* Start of defines for 16-bit Windows using VC++ 1.5 */
|
/* Start of defines for 16-bit Windows using VC++ 1.5 */
|
||||||
|
@ -67,11 +93,10 @@ typedef int pid_t;
|
||||||
#define MS_WIN16
|
#define MS_WIN16
|
||||||
#define MS_WINDOWS
|
#define MS_WINDOWS
|
||||||
#endif
|
#endif
|
||||||
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
|
#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
|
||||||
#define IMPORT_8x3_NAMES
|
#define IMPORT_8x3_NAMES
|
||||||
typedef int pid_t;
|
typedef int pid_t;
|
||||||
#define WORD_BIT 16
|
#define WORD_BIT 16
|
||||||
#define _COMPLEX_DEFINED
|
|
||||||
#pragma warning(disable:4113)
|
#pragma warning(disable:4113)
|
||||||
#define memcpy memmove /* memcpy dangerous pointer wrap in Win 3.1 */
|
#define memcpy memmove /* memcpy dangerous pointer wrap in Win 3.1 */
|
||||||
#define hypot _hypot
|
#define hypot _hypot
|
||||||
|
@ -109,7 +134,7 @@ int sscanf(const char *, const char *, ...);
|
||||||
/* The Watcom compiler defines __WATCOMC__ */
|
/* The Watcom compiler defines __WATCOMC__ */
|
||||||
#ifdef __WATCOMC__
|
#ifdef __WATCOMC__
|
||||||
#define COMPILER "[Watcom]"
|
#define COMPILER "[Watcom]"
|
||||||
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
|
#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
|
||||||
#define IMPORT_8x3_NAMES
|
#define IMPORT_8x3_NAMES
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <direct.h>
|
#include <direct.h>
|
||||||
|
@ -144,7 +169,7 @@ typedef int pid_t;
|
||||||
/* The Borland compiler defines __BORLANDC__ */
|
/* The Borland compiler defines __BORLANDC__ */
|
||||||
#ifdef __BORLANDC__
|
#ifdef __BORLANDC__
|
||||||
#define COMPILER "[Borland]"
|
#define COMPILER "[Borland]"
|
||||||
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
|
#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
|
||||||
#define IMPORT_8x3_NAMES
|
#define IMPORT_8x3_NAMES
|
||||||
#define HAVE_CLOCK
|
#define HAVE_CLOCK
|
||||||
#define HAVE_STRFTIME
|
#define HAVE_STRFTIME
|
||||||
|
@ -153,6 +178,18 @@ typedef int pid_t;
|
||||||
#endif
|
#endif
|
||||||
#endif /* BORLANDC */
|
#endif /* BORLANDC */
|
||||||
|
|
||||||
|
/* End of compilers - finish up */
|
||||||
|
|
||||||
|
#ifdef MS_WIN32
|
||||||
|
#define PLATFORM "win32"
|
||||||
|
#else
|
||||||
|
#ifdef MS_WIN16
|
||||||
|
#define PLATFORM "win16"
|
||||||
|
#else
|
||||||
|
#define PLATFORM "dos"
|
||||||
|
#endif /* !MS_WIN16 */
|
||||||
|
#endif /* !MS_WIN32 */
|
||||||
|
|
||||||
/* Fairly standard from here! */
|
/* Fairly standard from here! */
|
||||||
|
|
||||||
/* Define if on AIX 3.
|
/* Define if on AIX 3.
|
||||||
|
|
68
PC/make8x3.py
Normal file
68
PC/make8x3.py
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
#! /usr/local/bin/python
|
||||||
|
|
||||||
|
# This program reads all *.py and test/*.py in "libDir", and
|
||||||
|
# copies those files with illegal DOS names to libDir/dos_8x3.
|
||||||
|
# Names are illegal if they are longer than 8x3 chars or if they
|
||||||
|
# contain uppercase chars. It also tests for name collisions.
|
||||||
|
# You must first create the directory libDir/dos_8x3 yourself.
|
||||||
|
# You should remove all files in dos_8x3 if you run it again.
|
||||||
|
|
||||||
|
# CHANGE libDir TO THE CORRECT DIRECTORY. RM dos_8x3/* FIRST.
|
||||||
|
|
||||||
|
import sys, os, regex, string
|
||||||
|
|
||||||
|
libDir = "./Lib" # Location of Python Lib
|
||||||
|
|
||||||
|
def make8x3():
|
||||||
|
reg_uppercase = regex.compile("[A-Z]")
|
||||||
|
collisions = {} # See if all names are unique in first 8 chars.
|
||||||
|
destDir = os.path.join(libDir, "dos_8x3")
|
||||||
|
if not os.path.isdir(destDir):
|
||||||
|
print "Please create the directory", destDir, "first."
|
||||||
|
err()
|
||||||
|
while 1:
|
||||||
|
ans = raw_input("Ok to copy to " + destDir + " [yn]? ")
|
||||||
|
if not ans:
|
||||||
|
continue
|
||||||
|
elif ans[0] == "n":
|
||||||
|
err()
|
||||||
|
elif ans[0] == "y":
|
||||||
|
break
|
||||||
|
for dirname in libDir, os.path.join(libDir, "test"):
|
||||||
|
for filename in os.listdir(dirname):
|
||||||
|
if filename[-3:] == ".py":
|
||||||
|
name = filename[0:-3]
|
||||||
|
if len(name) > 8 or reg_uppercase.search(name) >= 0:
|
||||||
|
shortName = string.lower(name[0:8])
|
||||||
|
if collisions.has_key(shortName):
|
||||||
|
print "Name not unique in first 8 chars:", collisions[shortName], name
|
||||||
|
else:
|
||||||
|
collisions[shortName] = name
|
||||||
|
fin = open(os.path.join(dirname, filename), "r")
|
||||||
|
dest = os.path.join(destDir, shortName + ".py")
|
||||||
|
fout = open(dest, "w")
|
||||||
|
fout.write(fin.read())
|
||||||
|
fin.close()
|
||||||
|
fout.close()
|
||||||
|
os.chmod(dest, 0644)
|
||||||
|
elif filename == "." or filename == "..":
|
||||||
|
continue
|
||||||
|
elif filename[-4:] == ".pyc":
|
||||||
|
continue
|
||||||
|
elif filename == "Makefile":
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
parts = string.splitfields(filename, ".")
|
||||||
|
if len(parts) > 2 or \
|
||||||
|
len(parts[0]) > 8 or \
|
||||||
|
reg_uppercase.search(filename) >= 0 or \
|
||||||
|
(len(parts) > 1 and len(parts[1]) > 3):
|
||||||
|
print "Illegal DOS name", os.path.join(dirname, filename)
|
||||||
|
sys.exit(0)
|
||||||
|
def err():
|
||||||
|
print "No files copied."
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
make8x3()
|
|
@ -121,6 +121,8 @@ EXPORTS
|
||||||
PyImport_GetModuleDict
|
PyImport_GetModuleDict
|
||||||
PyImport_AddModule
|
PyImport_AddModule
|
||||||
PyImport_ImportModule
|
PyImport_ImportModule
|
||||||
|
PyImport_ImportFrozenModule
|
||||||
|
PyImport_FrozenModules
|
||||||
PyImport_ReloadModule
|
PyImport_ReloadModule
|
||||||
PyImport_Cleanup
|
PyImport_Cleanup
|
||||||
PyInt_FromLong
|
PyInt_FromLong
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project : n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.exe n:\python\python-1&
|
project : n:\python\python-1.4b2\pc\wat_os2\pyth_os2.exe n:\python\python-1.&
|
||||||
.4b0b\pc\wat_dos\pyth_dos.exe .SYMBOLIC
|
4b2\pc\wat_dos\pyth_dos.exe .SYMBOLIC
|
||||||
|
|
||||||
!include n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.mk1
|
!include n:\python\python-1.4b2\pc\wat_os2\pyth_os2.mk1
|
||||||
!include n:\python\python-1.4b0b\pc\wat_dos\pyth_dos.mk1
|
!include n:\python\python-1.4b2\pc\wat_dos\pyth_dos.mk1
|
||||||
|
|
|
@ -36,28 +36,28 @@ WRect
|
||||||
256
|
256
|
||||||
5632
|
5632
|
||||||
4096
|
4096
|
||||||
1
|
0
|
||||||
0
|
0
|
||||||
10
|
10
|
||||||
WFileName
|
WFileName
|
||||||
20
|
20
|
||||||
wat_os2\pyth_os2.tgt
|
wat_os2\pyth_os2.tgt
|
||||||
0
|
12
|
||||||
0
|
74
|
||||||
11
|
11
|
||||||
VComponent
|
VComponent
|
||||||
12
|
12
|
||||||
WRect
|
WRect
|
||||||
0
|
128
|
||||||
0
|
85
|
||||||
5632
|
5632
|
||||||
4147
|
4113
|
||||||
0
|
0
|
||||||
0
|
0
|
||||||
13
|
13
|
||||||
WFileName
|
WFileName
|
||||||
20
|
20
|
||||||
wat_dos\pyth_dos.tgt
|
wat_dos\pyth_dos.tgt
|
||||||
0
|
9
|
||||||
0
|
9
|
||||||
11
|
11
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,7 @@ D_RCDEFINES = -d_DEBUG
|
||||||
R_RCDEFINES = -dNDEBUG
|
R_RCDEFINES = -dNDEBUG
|
||||||
ORIGIN = MSVC
|
ORIGIN = MSVC
|
||||||
ORIGIN_VER = 1.00
|
ORIGIN_VER = 1.00
|
||||||
PROJPATH = N:\PYTHON\PYTHO~HA.4B0\PC\VC15_W31\
|
PROJPATH = N:\PYTHON\PYTHON-1.4B2\PC\VC15_W31\
|
||||||
USEMFC = 0
|
USEMFC = 0
|
||||||
CC = cl
|
CC = cl
|
||||||
CPP = cl
|
CPP = cl
|
||||||
|
@ -40,14 +40,14 @@ LFLAGS = $(LFLAGS_D_WTTY)
|
||||||
LIBS = $(LIBS_D_WTTY)
|
LIBS = $(LIBS_D_WTTY)
|
||||||
MAPFILE = nul
|
MAPFILE = nul
|
||||||
RCDEFINES = $(D_RCDEFINES)
|
RCDEFINES = $(D_RCDEFINES)
|
||||||
DEFFILE=N:\PYTHON\PYTHO~HA.4B0\PC\PYTH_W31.DEF
|
DEFFILE=N:\PYTHON\PYTHON-1.4B2\PC\PYTH_W31.DEF
|
||||||
!else
|
!else
|
||||||
CFLAGS = $(CFLAGS_R_WTTY)
|
CFLAGS = $(CFLAGS_R_WTTY)
|
||||||
LFLAGS = $(LFLAGS_R_WTTY)
|
LFLAGS = $(LFLAGS_R_WTTY)
|
||||||
LIBS = $(LIBS_R_WTTY)
|
LIBS = $(LIBS_R_WTTY)
|
||||||
MAPFILE = nul
|
MAPFILE = nul
|
||||||
RCDEFINES = $(R_RCDEFINES)
|
RCDEFINES = $(R_RCDEFINES)
|
||||||
DEFFILE=N:\PYTHON\PYTHO~HA.4B0\PC\PYTH_W31.DEF
|
DEFFILE=N:\PYTHON\PYTHON-1.4B2\PC\PYTH_W31.DEF
|
||||||
!endif
|
!endif
|
||||||
!if [if exist MSVC.BND del MSVC.BND]
|
!if [if exist MSVC.BND del MSVC.BND]
|
||||||
!endif
|
!endif
|
||||||
|
@ -57,123 +57,123 @@ SBRS = MAIN.SBR \
|
||||||
SOCKETMO.SBR
|
SOCKETMO.SBR
|
||||||
|
|
||||||
|
|
||||||
MAIN_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
|
MAIN_DEP = n:\python\python-1.4b2\pc\src\python.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\allobjec.h \
|
n:\python\python-1.4b2\pc\src\allobjec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\config.h \
|
n:\python\python-1.4b2\pc\src\config.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\myproto.h \
|
n:\python\python-1.4b2\pc\src\myproto.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\rename2.h \
|
n:\python\python-1.4b2\pc\src\rename2.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\object.h \
|
n:\python\python-1.4b2\pc\src\object.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\objimpl.h \
|
n:\python\python-1.4b2\pc\src\objimpl.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\pydebug.h \
|
n:\python\python-1.4b2\pc\src\pydebug.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\accessob.h \
|
n:\python\python-1.4b2\pc\src\accessob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\intobjec.h \
|
n:\python\python-1.4b2\pc\src\intobjec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\longobje.h \
|
n:\python\python-1.4b2\pc\src\longobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\floatobj.h \
|
n:\python\python-1.4b2\pc\src\floatobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\complexo.h \
|
n:\python\python-1.4b2\pc\src\complexo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
|
n:\python\python-1.4b2\pc\src\rangeobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\stringob.h \
|
n:\python\python-1.4b2\pc\src\stringob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
|
n:\python\python-1.4b2\pc\src\tupleobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\listobje.h \
|
n:\python\python-1.4b2\pc\src\listobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mappingo.h \
|
n:\python\python-1.4b2\pc\src\mappingo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\methodob.h \
|
n:\python\python-1.4b2\pc\src\methodob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\moduleob.h \
|
n:\python\python-1.4b2\pc\src\moduleob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\funcobje.h \
|
n:\python\python-1.4b2\pc\src\funcobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\classobj.h \
|
n:\python\python-1.4b2\pc\src\classobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\thread.h \
|
n:\python\python-1.4b2\pc\src\thread.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\fileobje.h \
|
n:\python\python-1.4b2\pc\src\fileobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\cobject.h \
|
n:\python\python-1.4b2\pc\src\cobject.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\tracebac.h \
|
n:\python\python-1.4b2\pc\src\tracebac.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\errors.h \
|
n:\python\python-1.4b2\pc\src\errors.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
|
n:\python\python-1.4b2\pc\src\mymalloc.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
|
n:\python\python-1.4b2\pc\src\modsuppo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\ceval.h \
|
n:\python\python-1.4b2\pc\src\ceval.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\pythonru.h \
|
n:\python\python-1.4b2\pc\src\pythonru.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
|
n:\python\python-1.4b2\pc\src\sysmodul.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\intrchec.h \
|
n:\python\python-1.4b2\pc\src\intrchec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\import.h \
|
n:\python\python-1.4b2\pc\src\import.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
|
n:\python\python-1.4b2\pc\src\bltinmod.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\abstract.h
|
n:\python\python-1.4b2\pc\src\abstract.h
|
||||||
|
|
||||||
|
|
||||||
GETOPT_DEP =
|
GETOPT_DEP =
|
||||||
|
|
||||||
SELECTMO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
|
SELECTMO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\config.h \
|
n:\python\python-1.4b2\pc\src\config.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\myproto.h \
|
n:\python\python-1.4b2\pc\src\myproto.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\rename2.h \
|
n:\python\python-1.4b2\pc\src\rename2.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\object.h \
|
n:\python\python-1.4b2\pc\src\object.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\objimpl.h \
|
n:\python\python-1.4b2\pc\src\objimpl.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\pydebug.h \
|
n:\python\python-1.4b2\pc\src\pydebug.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\accessob.h \
|
n:\python\python-1.4b2\pc\src\accessob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\intobjec.h \
|
n:\python\python-1.4b2\pc\src\intobjec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\longobje.h \
|
n:\python\python-1.4b2\pc\src\longobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\floatobj.h \
|
n:\python\python-1.4b2\pc\src\floatobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\complexo.h \
|
n:\python\python-1.4b2\pc\src\complexo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
|
n:\python\python-1.4b2\pc\src\rangeobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\stringob.h \
|
n:\python\python-1.4b2\pc\src\stringob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
|
n:\python\python-1.4b2\pc\src\tupleobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\listobje.h \
|
n:\python\python-1.4b2\pc\src\listobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mappingo.h \
|
n:\python\python-1.4b2\pc\src\mappingo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\methodob.h \
|
n:\python\python-1.4b2\pc\src\methodob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\moduleob.h \
|
n:\python\python-1.4b2\pc\src\moduleob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\funcobje.h \
|
n:\python\python-1.4b2\pc\src\funcobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\classobj.h \
|
n:\python\python-1.4b2\pc\src\classobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\thread.h \
|
n:\python\python-1.4b2\pc\src\thread.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\fileobje.h \
|
n:\python\python-1.4b2\pc\src\fileobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\cobject.h \
|
n:\python\python-1.4b2\pc\src\cobject.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\tracebac.h \
|
n:\python\python-1.4b2\pc\src\tracebac.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\errors.h \
|
n:\python\python-1.4b2\pc\src\errors.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
|
n:\python\python-1.4b2\pc\src\mymalloc.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
|
n:\python\python-1.4b2\pc\src\modsuppo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\ceval.h \
|
n:\python\python-1.4b2\pc\src\ceval.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\pythonru.h \
|
n:\python\python-1.4b2\pc\src\pythonru.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
|
n:\python\python-1.4b2\pc\src\sysmodul.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\intrchec.h \
|
n:\python\python-1.4b2\pc\src\intrchec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\import.h \
|
n:\python\python-1.4b2\pc\src\import.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
|
n:\python\python-1.4b2\pc\src\bltinmod.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\abstract.h \
|
n:\python\python-1.4b2\pc\src\abstract.h \
|
||||||
c:\msvc\include\winsock.h \
|
c:\msvc\include\winsock.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\myselect.h \
|
n:\python\python-1.4b2\pc\src\myselect.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mytime.h
|
n:\python\python-1.4b2\pc\src\mytime.h
|
||||||
|
|
||||||
|
|
||||||
SOCKETMO_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
|
SOCKETMO_DEP = n:\python\python-1.4b2\pc\src\python.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\allobjec.h \
|
n:\python\python-1.4b2\pc\src\allobjec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\config.h \
|
n:\python\python-1.4b2\pc\src\config.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\myproto.h \
|
n:\python\python-1.4b2\pc\src\myproto.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\rename2.h \
|
n:\python\python-1.4b2\pc\src\rename2.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\object.h \
|
n:\python\python-1.4b2\pc\src\object.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\objimpl.h \
|
n:\python\python-1.4b2\pc\src\objimpl.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\pydebug.h \
|
n:\python\python-1.4b2\pc\src\pydebug.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\accessob.h \
|
n:\python\python-1.4b2\pc\src\accessob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\intobjec.h \
|
n:\python\python-1.4b2\pc\src\intobjec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\longobje.h \
|
n:\python\python-1.4b2\pc\src\longobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\floatobj.h \
|
n:\python\python-1.4b2\pc\src\floatobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\complexo.h \
|
n:\python\python-1.4b2\pc\src\complexo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
|
n:\python\python-1.4b2\pc\src\rangeobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\stringob.h \
|
n:\python\python-1.4b2\pc\src\stringob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
|
n:\python\python-1.4b2\pc\src\tupleobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\listobje.h \
|
n:\python\python-1.4b2\pc\src\listobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mappingo.h \
|
n:\python\python-1.4b2\pc\src\mappingo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\methodob.h \
|
n:\python\python-1.4b2\pc\src\methodob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\moduleob.h \
|
n:\python\python-1.4b2\pc\src\moduleob.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\funcobje.h \
|
n:\python\python-1.4b2\pc\src\funcobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\classobj.h \
|
n:\python\python-1.4b2\pc\src\classobj.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\thread.h \
|
n:\python\python-1.4b2\pc\src\thread.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\fileobje.h \
|
n:\python\python-1.4b2\pc\src\fileobje.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\cobject.h \
|
n:\python\python-1.4b2\pc\src\cobject.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\tracebac.h \
|
n:\python\python-1.4b2\pc\src\tracebac.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\errors.h \
|
n:\python\python-1.4b2\pc\src\errors.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
|
n:\python\python-1.4b2\pc\src\mymalloc.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
|
n:\python\python-1.4b2\pc\src\modsuppo.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\ceval.h \
|
n:\python\python-1.4b2\pc\src\ceval.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\pythonru.h \
|
n:\python\python-1.4b2\pc\src\pythonru.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
|
n:\python\python-1.4b2\pc\src\sysmodul.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\intrchec.h \
|
n:\python\python-1.4b2\pc\src\intrchec.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\import.h \
|
n:\python\python-1.4b2\pc\src\import.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
|
n:\python\python-1.4b2\pc\src\bltinmod.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\abstract.h \
|
n:\python\python-1.4b2\pc\src\abstract.h \
|
||||||
n:\python\pytho~ha.4b0\pc\src\mytime.h \
|
n:\python\python-1.4b2\pc\src\mytime.h \
|
||||||
c:\msvc\include\winsock.h
|
c:\msvc\include\winsock.h
|
||||||
|
|
||||||
|
|
||||||
|
|
7728
PC/vc40.mak
7728
PC/vc40.mak
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,3 @@
|
||||||
NAME pyth_dos
|
NAME pyth_dos
|
||||||
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,import.obj,posixmodule.obj
|
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,errnomodule.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj,posixmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -15,7 +15,7 @@ WString
|
||||||
dr2en
|
dr2en
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
1
|
0
|
||||||
4
|
4
|
||||||
MCommand
|
MCommand
|
||||||
0
|
0
|
||||||
|
@ -74,7 +74,7 @@ WVList
|
||||||
0
|
0
|
||||||
18
|
18
|
||||||
WPickList
|
WPickList
|
||||||
75
|
77
|
||||||
19
|
19
|
||||||
MItem
|
MItem
|
||||||
3
|
3
|
||||||
|
@ -321,8 +321,8 @@ WVList
|
||||||
0
|
0
|
||||||
77
|
77
|
||||||
MItem
|
MItem
|
||||||
23
|
27
|
||||||
..\..\modules\getpath.c
|
..\..\modules\errnomodule.c
|
||||||
78
|
78
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -340,7 +340,7 @@ WVList
|
||||||
81
|
81
|
||||||
MItem
|
MItem
|
||||||
23
|
23
|
||||||
..\..\modules\imageop.c
|
..\..\modules\getpath.c
|
||||||
82
|
82
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -357,8 +357,8 @@ WVList
|
||||||
0
|
0
|
||||||
85
|
85
|
||||||
MItem
|
MItem
|
||||||
20
|
23
|
||||||
..\..\modules\main.c
|
..\..\modules\imageop.c
|
||||||
86
|
86
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -375,8 +375,8 @@ WVList
|
||||||
0
|
0
|
||||||
89
|
89
|
||||||
MItem
|
MItem
|
||||||
26
|
20
|
||||||
..\..\modules\mathmodule.c
|
..\..\modules\main.c
|
||||||
90
|
90
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -393,8 +393,8 @@ WVList
|
||||||
0
|
0
|
||||||
93
|
93
|
||||||
MItem
|
MItem
|
||||||
20
|
26
|
||||||
..\..\modules\md5c.c
|
..\..\modules\mathmodule.c
|
||||||
94
|
94
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -411,8 +411,8 @@ WVList
|
||||||
0
|
0
|
||||||
97
|
97
|
||||||
MItem
|
MItem
|
||||||
25
|
20
|
||||||
..\..\modules\md5module.c
|
..\..\modules\md5c.c
|
||||||
98
|
98
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -430,7 +430,7 @@ WVList
|
||||||
101
|
101
|
||||||
MItem
|
MItem
|
||||||
25
|
25
|
||||||
..\..\modules\newmodule.c
|
..\..\modules\md5module.c
|
||||||
102
|
102
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -447,8 +447,8 @@ WVList
|
||||||
0
|
0
|
||||||
105
|
105
|
||||||
MItem
|
MItem
|
||||||
27
|
25
|
||||||
..\..\modules\regexmodule.c
|
..\..\modules\newmodule.c
|
||||||
106
|
106
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -465,8 +465,8 @@ WVList
|
||||||
0
|
0
|
||||||
109
|
109
|
||||||
MItem
|
MItem
|
||||||
23
|
24
|
||||||
..\..\modules\regexpr.c
|
..\..\modules\operator.c
|
||||||
110
|
110
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -483,8 +483,8 @@ WVList
|
||||||
0
|
0
|
||||||
113
|
113
|
||||||
MItem
|
MItem
|
||||||
28
|
27
|
||||||
..\..\modules\rgbimgmodule.c
|
..\..\modules\posixmodule.c
|
||||||
114
|
114
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -502,7 +502,7 @@ WVList
|
||||||
117
|
117
|
||||||
MItem
|
MItem
|
||||||
27
|
27
|
||||||
..\..\modules\rotormodule.c
|
..\..\modules\regexmodule.c
|
||||||
118
|
118
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -519,8 +519,8 @@ WVList
|
||||||
0
|
0
|
||||||
121
|
121
|
||||||
MItem
|
MItem
|
||||||
28
|
23
|
||||||
..\..\modules\signalmodule.c
|
..\..\modules\regexpr.c
|
||||||
122
|
122
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -537,8 +537,8 @@ WVList
|
||||||
0
|
0
|
||||||
125
|
125
|
||||||
MItem
|
MItem
|
||||||
23
|
28
|
||||||
..\..\modules\soundex.c
|
..\..\modules\rgbimgmodule.c
|
||||||
126
|
126
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -556,7 +556,7 @@ WVList
|
||||||
129
|
129
|
||||||
MItem
|
MItem
|
||||||
27
|
27
|
||||||
..\..\modules\stropmodule.c
|
..\..\modules\rotormodule.c
|
||||||
130
|
130
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -574,7 +574,7 @@ WVList
|
||||||
133
|
133
|
||||||
MItem
|
MItem
|
||||||
28
|
28
|
||||||
..\..\modules\structmodule.c
|
..\..\modules\signalmodule.c
|
||||||
134
|
134
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -591,8 +591,8 @@ WVList
|
||||||
0
|
0
|
||||||
137
|
137
|
||||||
MItem
|
MItem
|
||||||
26
|
23
|
||||||
..\..\modules\timemodule.c
|
..\..\modules\soundex.c
|
||||||
138
|
138
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -609,8 +609,8 @@ WVList
|
||||||
0
|
0
|
||||||
141
|
141
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\modules\yuvconvert.c
|
..\..\modules\stropmodule.c
|
||||||
142
|
142
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -627,8 +627,8 @@ WVList
|
||||||
0
|
0
|
||||||
145
|
145
|
||||||
MItem
|
MItem
|
||||||
24
|
28
|
||||||
..\..\objects\abstract.c
|
..\..\modules\structmodule.c
|
||||||
146
|
146
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -645,8 +645,8 @@ WVList
|
||||||
0
|
0
|
||||||
149
|
149
|
||||||
MItem
|
MItem
|
||||||
28
|
26
|
||||||
..\..\objects\accessobject.c
|
..\..\modules\timemodule.c
|
||||||
150
|
150
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -663,8 +663,8 @@ WVList
|
||||||
0
|
0
|
||||||
153
|
153
|
||||||
MItem
|
MItem
|
||||||
27
|
26
|
||||||
..\..\objects\classobject.c
|
..\..\modules\yuvconvert.c
|
||||||
154
|
154
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -681,8 +681,8 @@ WVList
|
||||||
0
|
0
|
||||||
157
|
157
|
||||||
MItem
|
MItem
|
||||||
23
|
24
|
||||||
..\..\objects\cobject.c
|
..\..\objects\abstract.c
|
||||||
158
|
158
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -699,8 +699,8 @@ WVList
|
||||||
0
|
0
|
||||||
161
|
161
|
||||||
MItem
|
MItem
|
||||||
29
|
28
|
||||||
..\..\objects\complexobject.c
|
..\..\objects\accessobject.c
|
||||||
162
|
162
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -717,8 +717,8 @@ WVList
|
||||||
0
|
0
|
||||||
165
|
165
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\objects\fileobject.c
|
..\..\objects\classobject.c
|
||||||
166
|
166
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -735,8 +735,8 @@ WVList
|
||||||
0
|
0
|
||||||
169
|
169
|
||||||
MItem
|
MItem
|
||||||
27
|
23
|
||||||
..\..\objects\floatobject.c
|
..\..\objects\cobject.c
|
||||||
170
|
170
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -753,8 +753,8 @@ WVList
|
||||||
0
|
0
|
||||||
173
|
173
|
||||||
MItem
|
MItem
|
||||||
27
|
29
|
||||||
..\..\objects\frameobject.c
|
..\..\objects\complexobject.c
|
||||||
174
|
174
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -772,7 +772,7 @@ WVList
|
||||||
177
|
177
|
||||||
MItem
|
MItem
|
||||||
26
|
26
|
||||||
..\..\objects\funcobject.c
|
..\..\objects\fileobject.c
|
||||||
178
|
178
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -789,8 +789,8 @@ WVList
|
||||||
0
|
0
|
||||||
181
|
181
|
||||||
MItem
|
MItem
|
||||||
25
|
27
|
||||||
..\..\objects\intobject.c
|
..\..\objects\floatobject.c
|
||||||
182
|
182
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -807,8 +807,8 @@ WVList
|
||||||
0
|
0
|
||||||
185
|
185
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\objects\listobject.c
|
..\..\objects\frameobject.c
|
||||||
186
|
186
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -826,7 +826,7 @@ WVList
|
||||||
189
|
189
|
||||||
MItem
|
MItem
|
||||||
26
|
26
|
||||||
..\..\objects\longobject.c
|
..\..\objects\funcobject.c
|
||||||
190
|
190
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -843,8 +843,8 @@ WVList
|
||||||
0
|
0
|
||||||
193
|
193
|
||||||
MItem
|
MItem
|
||||||
29
|
25
|
||||||
..\..\objects\mappingobject.c
|
..\..\objects\intobject.c
|
||||||
194
|
194
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -861,8 +861,8 @@ WVList
|
||||||
0
|
0
|
||||||
197
|
197
|
||||||
MItem
|
MItem
|
||||||
28
|
26
|
||||||
..\..\objects\methodobject.c
|
..\..\objects\listobject.c
|
||||||
198
|
198
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -879,8 +879,8 @@ WVList
|
||||||
0
|
0
|
||||||
201
|
201
|
||||||
MItem
|
MItem
|
||||||
28
|
26
|
||||||
..\..\objects\moduleobject.c
|
..\..\objects\longobject.c
|
||||||
202
|
202
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -897,8 +897,8 @@ WVList
|
||||||
0
|
0
|
||||||
205
|
205
|
||||||
MItem
|
MItem
|
||||||
22
|
29
|
||||||
..\..\objects\object.c
|
..\..\objects\mappingobject.c
|
||||||
206
|
206
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -915,8 +915,8 @@ WVList
|
||||||
0
|
0
|
||||||
209
|
209
|
||||||
MItem
|
MItem
|
||||||
27
|
28
|
||||||
..\..\objects\rangeobject.c
|
..\..\objects\methodobject.c
|
||||||
210
|
210
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -934,7 +934,7 @@ WVList
|
||||||
213
|
213
|
||||||
MItem
|
MItem
|
||||||
28
|
28
|
||||||
..\..\objects\stringobject.c
|
..\..\objects\moduleobject.c
|
||||||
214
|
214
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -951,8 +951,8 @@ WVList
|
||||||
0
|
0
|
||||||
217
|
217
|
||||||
MItem
|
MItem
|
||||||
27
|
22
|
||||||
..\..\objects\tupleobject.c
|
..\..\objects\object.c
|
||||||
218
|
218
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -969,8 +969,8 @@ WVList
|
||||||
0
|
0
|
||||||
221
|
221
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\objects\typeobject.c
|
..\..\objects\rangeobject.c
|
||||||
222
|
222
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -987,8 +987,8 @@ WVList
|
||||||
0
|
0
|
||||||
225
|
225
|
||||||
MItem
|
MItem
|
||||||
22
|
28
|
||||||
..\..\parser\acceler.c
|
..\..\objects\stringobject.c
|
||||||
226
|
226
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1005,8 +1005,8 @@ WVList
|
||||||
0
|
0
|
||||||
229
|
229
|
||||||
MItem
|
MItem
|
||||||
23
|
27
|
||||||
..\..\parser\grammar1.c
|
..\..\objects\tupleobject.c
|
||||||
230
|
230
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1023,8 +1023,8 @@ WVList
|
||||||
0
|
0
|
||||||
233
|
233
|
||||||
MItem
|
MItem
|
||||||
25
|
26
|
||||||
..\..\parser\myreadline.c
|
..\..\objects\typeobject.c
|
||||||
234
|
234
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1041,8 +1041,8 @@ WVList
|
||||||
0
|
0
|
||||||
237
|
237
|
||||||
MItem
|
MItem
|
||||||
19
|
22
|
||||||
..\..\parser\node.c
|
..\..\parser\acceler.c
|
||||||
238
|
238
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1059,8 +1059,8 @@ WVList
|
||||||
0
|
0
|
||||||
241
|
241
|
||||||
MItem
|
MItem
|
||||||
21
|
23
|
||||||
..\..\parser\parser.c
|
..\..\parser\grammar1.c
|
||||||
242
|
242
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1077,8 +1077,8 @@ WVList
|
||||||
0
|
0
|
||||||
245
|
245
|
||||||
MItem
|
MItem
|
||||||
23
|
25
|
||||||
..\..\parser\parsetok.c
|
..\..\parser\myreadline.c
|
||||||
246
|
246
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1095,8 +1095,8 @@ WVList
|
||||||
0
|
0
|
||||||
249
|
249
|
||||||
MItem
|
MItem
|
||||||
24
|
19
|
||||||
..\..\parser\tokenizer.c
|
..\..\parser\node.c
|
||||||
250
|
250
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1113,8 +1113,8 @@ WVList
|
||||||
0
|
0
|
||||||
253
|
253
|
||||||
MItem
|
MItem
|
||||||
26
|
21
|
||||||
..\..\python\bltinmodule.c
|
..\..\parser\parser.c
|
||||||
254
|
254
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1131,8 +1131,8 @@ WVList
|
||||||
0
|
0
|
||||||
257
|
257
|
||||||
MItem
|
MItem
|
||||||
20
|
23
|
||||||
..\..\python\ceval.c
|
..\..\parser\parsetok.c
|
||||||
258
|
258
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1149,8 +1149,8 @@ WVList
|
||||||
0
|
0
|
||||||
261
|
261
|
||||||
MItem
|
MItem
|
||||||
26
|
24
|
||||||
..\..\python\cgensupport.c
|
..\..\parser\tokenizer.c
|
||||||
262
|
262
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1167,8 +1167,8 @@ WVList
|
||||||
0
|
0
|
||||||
265
|
265
|
||||||
MItem
|
MItem
|
||||||
22
|
26
|
||||||
..\..\python\compile.c
|
..\..\python\bltinmodule.c
|
||||||
266
|
266
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1185,8 +1185,8 @@ WVList
|
||||||
0
|
0
|
||||||
269
|
269
|
||||||
MItem
|
MItem
|
||||||
21
|
20
|
||||||
..\..\python\errors.c
|
..\..\python\ceval.c
|
||||||
270
|
270
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1203,8 +1203,8 @@ WVList
|
||||||
0
|
0
|
||||||
273
|
273
|
||||||
MItem
|
MItem
|
||||||
21
|
26
|
||||||
..\..\python\frozen.c
|
..\..\python\cgensupport.c
|
||||||
274
|
274
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1222,7 +1222,7 @@ WVList
|
||||||
277
|
277
|
||||||
MItem
|
MItem
|
||||||
22
|
22
|
||||||
..\..\python\getargs.c
|
..\..\python\compile.c
|
||||||
278
|
278
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1239,8 +1239,8 @@ WVList
|
||||||
0
|
0
|
||||||
281
|
281
|
||||||
MItem
|
MItem
|
||||||
26
|
21
|
||||||
..\..\python\getcompiler.c
|
..\..\python\errors.c
|
||||||
282
|
282
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1257,8 +1257,8 @@ WVList
|
||||||
0
|
0
|
||||||
285
|
285
|
||||||
MItem
|
MItem
|
||||||
27
|
21
|
||||||
..\..\python\getcopyright.c
|
..\..\python\frozen.c
|
||||||
286
|
286
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1275,8 +1275,8 @@ WVList
|
||||||
0
|
0
|
||||||
289
|
289
|
||||||
MItem
|
MItem
|
||||||
23
|
22
|
||||||
..\..\python\getmtime.c
|
..\..\python\getargs.c
|
||||||
290
|
290
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1293,8 +1293,8 @@ WVList
|
||||||
0
|
0
|
||||||
293
|
293
|
||||||
MItem
|
MItem
|
||||||
21
|
26
|
||||||
..\..\python\getopt.c
|
..\..\python\getcompiler.c
|
||||||
294
|
294
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1311,8 +1311,8 @@ WVList
|
||||||
0
|
0
|
||||||
297
|
297
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\python\getplatform.c
|
..\..\python\getcopyright.c
|
||||||
298
|
298
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1329,8 +1329,8 @@ WVList
|
||||||
0
|
0
|
||||||
301
|
301
|
||||||
MItem
|
MItem
|
||||||
25
|
23
|
||||||
..\..\python\getversion.c
|
..\..\python\getmtime.c
|
||||||
302
|
302
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1347,8 +1347,8 @@ WVList
|
||||||
0
|
0
|
||||||
305
|
305
|
||||||
MItem
|
MItem
|
||||||
23
|
21
|
||||||
..\..\python\graminit.c
|
..\..\python\getopt.c
|
||||||
306
|
306
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1365,8 +1365,8 @@ WVList
|
||||||
0
|
0
|
||||||
309
|
309
|
||||||
MItem
|
MItem
|
||||||
21
|
26
|
||||||
..\..\python\import.c
|
..\..\python\getplatform.c
|
||||||
310
|
310
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1383,8 +1383,8 @@ WVList
|
||||||
0
|
0
|
||||||
313
|
313
|
||||||
MItem
|
MItem
|
||||||
23
|
25
|
||||||
..\..\python\importdl.c
|
..\..\python\getversion.c
|
||||||
314
|
314
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1401,8 +1401,8 @@ WVList
|
||||||
0
|
0
|
||||||
317
|
317
|
||||||
MItem
|
MItem
|
||||||
22
|
23
|
||||||
..\..\python\marshal.c
|
..\..\python\graminit.c
|
||||||
318
|
318
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1419,8 +1419,8 @@ WVList
|
||||||
0
|
0
|
||||||
321
|
321
|
||||||
MItem
|
MItem
|
||||||
25
|
21
|
||||||
..\..\python\modsupport.c
|
..\..\python\import.c
|
||||||
322
|
322
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1437,8 +1437,8 @@ WVList
|
||||||
0
|
0
|
||||||
325
|
325
|
||||||
MItem
|
MItem
|
||||||
24
|
23
|
||||||
..\..\python\mystrtoul.c
|
..\..\python\importdl.c
|
||||||
326
|
326
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1455,8 +1455,8 @@ WVList
|
||||||
0
|
0
|
||||||
329
|
329
|
||||||
MItem
|
MItem
|
||||||
24
|
22
|
||||||
..\..\python\pythonrun.c
|
..\..\python\marshal.c
|
||||||
330
|
330
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1473,8 +1473,8 @@ WVList
|
||||||
0
|
0
|
||||||
333
|
333
|
||||||
MItem
|
MItem
|
||||||
27
|
25
|
||||||
..\..\python\structmember.c
|
..\..\python\modsupport.c
|
||||||
334
|
334
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1492,7 +1492,7 @@ WVList
|
||||||
337
|
337
|
||||||
MItem
|
MItem
|
||||||
24
|
24
|
||||||
..\..\python\sysmodule.c
|
..\..\python\mystrtoul.c
|
||||||
338
|
338
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1510,7 +1510,7 @@ WVList
|
||||||
341
|
341
|
||||||
MItem
|
MItem
|
||||||
24
|
24
|
||||||
..\..\python\traceback.c
|
..\..\python\pythonrun.c
|
||||||
342
|
342
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1527,8 +1527,8 @@ WVList
|
||||||
0
|
0
|
||||||
345
|
345
|
||||||
MItem
|
MItem
|
||||||
11
|
27
|
||||||
..\config.c
|
..\..\python\structmember.c
|
||||||
346
|
346
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1545,8 +1545,8 @@ WVList
|
||||||
0
|
0
|
||||||
349
|
349
|
||||||
MItem
|
MItem
|
||||||
16
|
24
|
||||||
..\posixmodule.c
|
..\..\python\sysmodule.c
|
||||||
350
|
350
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1561,3 +1561,39 @@ WVList
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
|
353
|
||||||
|
MItem
|
||||||
|
24
|
||||||
|
..\..\python\traceback.c
|
||||||
|
354
|
||||||
|
WString
|
||||||
|
4
|
||||||
|
COBJ
|
||||||
|
355
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
356
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
19
|
||||||
|
1
|
||||||
|
1
|
||||||
|
0
|
||||||
|
357
|
||||||
|
MItem
|
||||||
|
11
|
||||||
|
..\config.c
|
||||||
|
358
|
||||||
|
WString
|
||||||
|
4
|
||||||
|
COBJ
|
||||||
|
359
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
360
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
19
|
||||||
|
1
|
||||||
|
1
|
||||||
|
0
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
NAME pyth_os2
|
NAME pyth_os2
|
||||||
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,posixmodule.obj
|
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,posixmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj
|
||||||
|
|
||||||
|
|
|
@ -1,589 +1,588 @@
|
||||||
!define BLANK ""
|
!define BLANK ""
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\arraymodule.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\arraymodule.obj : n:\python\python-1.4b2\m&
|
||||||
\modules\arraymodule.c .AUTODEPEND
|
odules\arraymodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\arraymodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\modules\arraymodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\audioop.obj : n:\python\python-1.4b0b\mod&
|
n:\python\python-1.4b2\pc\wat_os2\audioop.obj : n:\python\python-1.4b2\modul&
|
||||||
ules\audioop.c .AUTODEPEND
|
es\audioop.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\audioop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\modules\audioop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\binascii.obj : n:\python\python-1.4b0b\mo&
|
n:\python\python-1.4b2\pc\wat_os2\binascii.obj : n:\python\python-1.4b2\modu&
|
||||||
dules\binascii.c .AUTODEPEND
|
les\binascii.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\binascii.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
*wcc386 ..\..\modules\binascii.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
||||||
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\cmathmodule.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\cmathmodule.obj : n:\python\python-1.4b2\m&
|
||||||
\modules\cmathmodule.c .AUTODEPEND
|
odules\cmathmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\cmathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\modules\cmathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\environment.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\environment.obj : n:\python\python-1.4b2\m&
|
||||||
\modules\environment.c .AUTODEPEND
|
odules\environment.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\environment.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\modules\environment.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getpath.obj : n:\python\python-1.4b0b\mod&
|
n:\python\python-1.4b2\pc\wat_os2\getpath.obj : n:\python\python-1.4b2\modul&
|
||||||
ules\getpath.c .AUTODEPEND
|
es\getpath.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\getpath.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\modules\getpath.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\imageop.obj : n:\python\python-1.4b0b\mod&
|
n:\python\python-1.4b2\pc\wat_os2\imageop.obj : n:\python\python-1.4b2\modul&
|
||||||
ules\imageop.c .AUTODEPEND
|
es\imageop.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\imageop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\modules\imageop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\main.obj : n:\python\python-1.4b0b\module&
|
n:\python\python-1.4b2\pc\wat_os2\main.obj : n:\python\python-1.4b2\modules\&
|
||||||
s\main.c .AUTODEPEND
|
main.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\main.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
|
*wcc386 ..\..\modules\main.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
|
||||||
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\mathmodule.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\mathmodule.obj : n:\python\python-1.4b2\mo&
|
||||||
modules\mathmodule.c .AUTODEPEND
|
dules\mathmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\mathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\modules\mathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\md5c.obj : n:\python\python-1.4b0b\module&
|
n:\python\python-1.4b2\pc\wat_os2\md5c.obj : n:\python\python-1.4b2\modules\&
|
||||||
s\md5c.c .AUTODEPEND
|
md5c.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\md5c.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
|
*wcc386 ..\..\modules\md5c.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
|
||||||
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\md5module.obj : n:\python\python-1.4b0b\m&
|
n:\python\python-1.4b2\pc\wat_os2\md5module.obj : n:\python\python-1.4b2\mod&
|
||||||
odules\md5module.c .AUTODEPEND
|
ules\md5module.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\md5module.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
*wcc386 ..\..\modules\md5module.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
||||||
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\newmodule.obj : n:\python\python-1.4b0b\m&
|
n:\python\python-1.4b2\pc\wat_os2\newmodule.obj : n:\python\python-1.4b2\mod&
|
||||||
odules\newmodule.c .AUTODEPEND
|
ules\newmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\newmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
*wcc386 ..\..\modules\newmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
||||||
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\regexmodule.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\posixmodule.obj : n:\python\python-1.4b2\m&
|
||||||
\modules\regexmodule.c .AUTODEPEND
|
odules\posixmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
|
*wcc386 ..\..\modules\posixmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
|
n:\python\python-1.4b2\pc\wat_os2\regexmodule.obj : n:\python\python-1.4b2\m&
|
||||||
|
odules\regexmodule.c .AUTODEPEND
|
||||||
|
@n:
|
||||||
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\regexmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\modules\regexmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\regexpr.obj : n:\python\python-1.4b0b\mod&
|
n:\python\python-1.4b2\pc\wat_os2\regexpr.obj : n:\python\python-1.4b2\modul&
|
||||||
ules\regexpr.c .AUTODEPEND
|
es\regexpr.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\regexpr.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\modules\regexpr.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\rgbimgmodule.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\rgbimgmodule.obj : n:\python\python-1.4b2\&
|
||||||
b\modules\rgbimgmodule.c .AUTODEPEND
|
modules\rgbimgmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\rgbimgmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
*wcc386 ..\..\modules\rgbimgmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
||||||
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\rotormodule.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\rotormodule.obj : n:\python\python-1.4b2\m&
|
||||||
\modules\rotormodule.c .AUTODEPEND
|
odules\rotormodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\rotormodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\modules\rotormodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\signalmodule.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\signalmodule.obj : n:\python\python-1.4b2\&
|
||||||
b\modules\signalmodule.c .AUTODEPEND
|
modules\signalmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\signalmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
*wcc386 ..\..\modules\signalmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
||||||
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\soundex.obj : n:\python\python-1.4b0b\mod&
|
n:\python\python-1.4b2\pc\wat_os2\soundex.obj : n:\python\python-1.4b2\modul&
|
||||||
ules\soundex.c .AUTODEPEND
|
es\soundex.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\soundex.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\modules\soundex.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\stropmodule.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\stropmodule.obj : n:\python\python-1.4b2\m&
|
||||||
\modules\stropmodule.c .AUTODEPEND
|
odules\stropmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\stropmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\modules\stropmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\structmodule.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\structmodule.obj : n:\python\python-1.4b2\&
|
||||||
b\modules\structmodule.c .AUTODEPEND
|
modules\structmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\structmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
*wcc386 ..\..\modules\structmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
||||||
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\timemodule.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\timemodule.obj : n:\python\python-1.4b2\mo&
|
||||||
modules\timemodule.c .AUTODEPEND
|
dules\timemodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\timemodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\modules\timemodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\yuvconvert.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\yuvconvert.obj : n:\python\python-1.4b2\mo&
|
||||||
modules\yuvconvert.c .AUTODEPEND
|
dules\yuvconvert.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\modules\yuvconvert.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\modules\yuvconvert.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\abstract.obj : n:\python\python-1.4b0b\ob&
|
n:\python\python-1.4b2\pc\wat_os2\abstract.obj : n:\python\python-1.4b2\obje&
|
||||||
jects\abstract.c .AUTODEPEND
|
cts\abstract.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\abstract.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
*wcc386 ..\..\objects\abstract.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
||||||
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\accessobject.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\accessobject.obj : n:\python\python-1.4b2\&
|
||||||
b\objects\accessobject.c .AUTODEPEND
|
objects\accessobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\accessobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
*wcc386 ..\..\objects\accessobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
||||||
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\classobject.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\classobject.obj : n:\python\python-1.4b2\o&
|
||||||
\objects\classobject.c .AUTODEPEND
|
bjects\classobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\classobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\objects\classobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\cobject.obj : n:\python\python-1.4b0b\obj&
|
n:\python\python-1.4b2\pc\wat_os2\cobject.obj : n:\python\python-1.4b2\objec&
|
||||||
ects\cobject.c .AUTODEPEND
|
ts\cobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\cobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\objects\cobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\complexobject.obj : n:\python\python-1.4b&
|
n:\python\python-1.4b2\pc\wat_os2\complexobject.obj : n:\python\python-1.4b2&
|
||||||
0b\objects\complexobject.c .AUTODEPEND
|
\objects\complexobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\complexobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
|
*wcc386 ..\..\objects\complexobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
|
||||||
TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\fileobject.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\fileobject.obj : n:\python\python-1.4b2\ob&
|
||||||
objects\fileobject.c .AUTODEPEND
|
jects\fileobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\fileobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\objects\fileobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\floatobject.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\floatobject.obj : n:\python\python-1.4b2\o&
|
||||||
\objects\floatobject.c .AUTODEPEND
|
bjects\floatobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\floatobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\objects\floatobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\frameobject.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\frameobject.obj : n:\python\python-1.4b2\o&
|
||||||
\objects\frameobject.c .AUTODEPEND
|
bjects\frameobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\frameobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\objects\frameobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\funcobject.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\funcobject.obj : n:\python\python-1.4b2\ob&
|
||||||
objects\funcobject.c .AUTODEPEND
|
jects\funcobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\funcobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\objects\funcobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\intobject.obj : n:\python\python-1.4b0b\o&
|
n:\python\python-1.4b2\pc\wat_os2\intobject.obj : n:\python\python-1.4b2\obj&
|
||||||
bjects\intobject.c .AUTODEPEND
|
ects\intobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\intobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
*wcc386 ..\..\objects\intobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
||||||
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\listobject.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\listobject.obj : n:\python\python-1.4b2\ob&
|
||||||
objects\listobject.c .AUTODEPEND
|
jects\listobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\listobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\objects\listobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\longobject.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\longobject.obj : n:\python\python-1.4b2\ob&
|
||||||
objects\longobject.c .AUTODEPEND
|
jects\longobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\longobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\objects\longobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\mappingobject.obj : n:\python\python-1.4b&
|
n:\python\python-1.4b2\pc\wat_os2\mappingobject.obj : n:\python\python-1.4b2&
|
||||||
0b\objects\mappingobject.c .AUTODEPEND
|
\objects\mappingobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\mappingobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
|
*wcc386 ..\..\objects\mappingobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
|
||||||
TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\methodobject.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\methodobject.obj : n:\python\python-1.4b2\&
|
||||||
b\objects\methodobject.c .AUTODEPEND
|
objects\methodobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\methodobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
*wcc386 ..\..\objects\methodobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
||||||
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\moduleobject.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\moduleobject.obj : n:\python\python-1.4b2\&
|
||||||
b\objects\moduleobject.c .AUTODEPEND
|
objects\moduleobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\moduleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
*wcc386 ..\..\objects\moduleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
||||||
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\object.obj : n:\python\python-1.4b0b\obje&
|
n:\python\python-1.4b2\pc\wat_os2\object.obj : n:\python\python-1.4b2\object&
|
||||||
cts\object.c .AUTODEPEND
|
s\object.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\object.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
*wcc386 ..\..\objects\object.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
||||||
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\rangeobject.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\rangeobject.obj : n:\python\python-1.4b2\o&
|
||||||
\objects\rangeobject.c .AUTODEPEND
|
bjects\rangeobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\rangeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\objects\rangeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\stringobject.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\stringobject.obj : n:\python\python-1.4b2\&
|
||||||
b\objects\stringobject.c .AUTODEPEND
|
objects\stringobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\stringobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
*wcc386 ..\..\objects\stringobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
|
||||||
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\tupleobject.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\tupleobject.obj : n:\python\python-1.4b2\o&
|
||||||
\objects\tupleobject.c .AUTODEPEND
|
bjects\tupleobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\tupleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\objects\tupleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\typeobject.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\typeobject.obj : n:\python\python-1.4b2\ob&
|
||||||
objects\typeobject.c .AUTODEPEND
|
jects\typeobject.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\objects\typeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\objects\typeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\acceler.obj : n:\python\python-1.4b0b\par&
|
n:\python\python-1.4b2\pc\wat_os2\acceler.obj : n:\python\python-1.4b2\parse&
|
||||||
ser\acceler.c .AUTODEPEND
|
r\acceler.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\parser\acceler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
*wcc386 ..\..\parser\acceler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
||||||
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\grammar1.obj : n:\python\python-1.4b0b\pa&
|
n:\python\python-1.4b2\pc\wat_os2\grammar1.obj : n:\python\python-1.4b2\pars&
|
||||||
rser\grammar1.c .AUTODEPEND
|
er\grammar1.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\parser\grammar1.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\parser\grammar1.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\myreadline.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\myreadline.obj : n:\python\python-1.4b2\pa&
|
||||||
parser\myreadline.c .AUTODEPEND
|
rser\myreadline.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\parser\myreadline.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
*wcc386 ..\..\parser\myreadline.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
||||||
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\node.obj : n:\python\python-1.4b0b\parser&
|
n:\python\python-1.4b2\pc\wat_os2\node.obj : n:\python\python-1.4b2\parser\n&
|
||||||
\node.c .AUTODEPEND
|
ode.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\parser\node.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2&
|
*wcc386 ..\..\parser\node.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2&
|
||||||
-w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
-w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\parser.obj : n:\python\python-1.4b0b\pars&
|
n:\python\python-1.4b2\pc\wat_os2\parser.obj : n:\python\python-1.4b2\parser&
|
||||||
er\parser.c .AUTODEPEND
|
\parser.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\parser\parser.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
*wcc386 ..\..\parser\parser.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
||||||
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\parsetok.obj : n:\python\python-1.4b0b\pa&
|
n:\python\python-1.4b2\pc\wat_os2\parsetok.obj : n:\python\python-1.4b2\pars&
|
||||||
rser\parsetok.c .AUTODEPEND
|
er\parsetok.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\parser\parsetok.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\parser\parsetok.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\tokenizer.obj : n:\python\python-1.4b0b\p&
|
n:\python\python-1.4b2\pc\wat_os2\tokenizer.obj : n:\python\python-1.4b2\par&
|
||||||
arser\tokenizer.c .AUTODEPEND
|
ser\tokenizer.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\parser\tokenizer.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
*wcc386 ..\..\parser\tokenizer.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
||||||
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\bltinmodule.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\bltinmodule.obj : n:\python\python-1.4b2\p&
|
||||||
\python\bltinmodule.c .AUTODEPEND
|
ython\bltinmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\bltinmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\python\bltinmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\ceval.obj : n:\python\python-1.4b0b\pytho&
|
n:\python\python-1.4b2\pc\wat_os2\ceval.obj : n:\python\python-1.4b2\python\&
|
||||||
n\ceval.c .AUTODEPEND
|
ceval.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\ceval.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
|
*wcc386 ..\..\python\ceval.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
|
||||||
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\cgensupport.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\cgensupport.obj : n:\python\python-1.4b2\p&
|
||||||
\python\cgensupport.c .AUTODEPEND
|
ython\cgensupport.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\cgensupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\python\cgensupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\compile.obj : n:\python\python-1.4b0b\pyt&
|
n:\python\python-1.4b2\pc\wat_os2\compile.obj : n:\python\python-1.4b2\pytho&
|
||||||
hon\compile.c .AUTODEPEND
|
n\compile.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\compile.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
*wcc386 ..\..\python\compile.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
||||||
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\errors.obj : n:\python\python-1.4b0b\pyth&
|
n:\python\python-1.4b2\pc\wat_os2\errors.obj : n:\python\python-1.4b2\python&
|
||||||
on\errors.c .AUTODEPEND
|
\errors.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\errors.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
*wcc386 ..\..\python\errors.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
||||||
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\frozen.obj : n:\python\python-1.4b0b\pyth&
|
n:\python\python-1.4b2\pc\wat_os2\frozen.obj : n:\python\python-1.4b2\python&
|
||||||
on\frozen.c .AUTODEPEND
|
\frozen.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\frozen.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
*wcc386 ..\..\python\frozen.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
||||||
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getargs.obj : n:\python\python-1.4b0b\pyt&
|
n:\python\python-1.4b2\pc\wat_os2\getargs.obj : n:\python\python-1.4b2\pytho&
|
||||||
hon\getargs.c .AUTODEPEND
|
n\getargs.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\getargs.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
*wcc386 ..\..\python\getargs.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
||||||
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getcompiler.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\getcompiler.obj : n:\python\python-1.4b2\p&
|
||||||
\python\getcompiler.c .AUTODEPEND
|
ython\getcompiler.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\getcompiler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\python\getcompiler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getcopyright.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\getcopyright.obj : n:\python\python-1.4b2\&
|
||||||
b\python\getcopyright.c .AUTODEPEND
|
python\getcopyright.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\getcopyright.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\python\getcopyright.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getmtime.obj : n:\python\python-1.4b0b\py&
|
n:\python\python-1.4b2\pc\wat_os2\getmtime.obj : n:\python\python-1.4b2\pyth&
|
||||||
thon\getmtime.c .AUTODEPEND
|
on\getmtime.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\getmtime.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\python\getmtime.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getopt.obj : n:\python\python-1.4b0b\pyth&
|
n:\python\python-1.4b2\pc\wat_os2\getopt.obj : n:\python\python-1.4b2\python&
|
||||||
on\getopt.c .AUTODEPEND
|
\getopt.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\getopt.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
*wcc386 ..\..\python\getopt.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
||||||
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getplatform.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\getplatform.obj : n:\python\python-1.4b2\p&
|
||||||
\python\getplatform.c .AUTODEPEND
|
ython\getplatform.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\getplatform.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
*wcc386 ..\..\python\getplatform.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
|
||||||
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\getversion.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\getversion.obj : n:\python\python-1.4b2\py&
|
||||||
python\getversion.c .AUTODEPEND
|
thon\getversion.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\getversion.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
*wcc386 ..\..\python\getversion.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
||||||
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\graminit.obj : n:\python\python-1.4b0b\py&
|
n:\python\python-1.4b2\pc\wat_os2\graminit.obj : n:\python\python-1.4b2\pyth&
|
||||||
thon\graminit.c .AUTODEPEND
|
on\graminit.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\graminit.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\python\graminit.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\import.obj : n:\python\python-1.4b0b\pyth&
|
n:\python\python-1.4b2\pc\wat_os2\import.obj : n:\python\python-1.4b2\python&
|
||||||
on\import.c .AUTODEPEND
|
\import.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\import.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
*wcc386 ..\..\python\import.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
|
||||||
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\importdl.obj : n:\python\python-1.4b0b\py&
|
n:\python\python-1.4b2\pc\wat_os2\importdl.obj : n:\python\python-1.4b2\pyth&
|
||||||
thon\importdl.c .AUTODEPEND
|
on\importdl.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\importdl.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
*wcc386 ..\..\python\importdl.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
|
||||||
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\marshal.obj : n:\python\python-1.4b0b\pyt&
|
n:\python\python-1.4b2\pc\wat_os2\marshal.obj : n:\python\python-1.4b2\pytho&
|
||||||
hon\marshal.c .AUTODEPEND
|
n\marshal.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\marshal.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
*wcc386 ..\..\python\marshal.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
|
||||||
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\modsupport.obj : n:\python\python-1.4b0b\&
|
n:\python\python-1.4b2\pc\wat_os2\modsupport.obj : n:\python\python-1.4b2\py&
|
||||||
python\modsupport.c .AUTODEPEND
|
thon\modsupport.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\modsupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
*wcc386 ..\..\python\modsupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
|
||||||
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\mystrtoul.obj : n:\python\python-1.4b0b\p&
|
n:\python\python-1.4b2\pc\wat_os2\mystrtoul.obj : n:\python\python-1.4b2\pyt&
|
||||||
ython\mystrtoul.c .AUTODEPEND
|
hon\mystrtoul.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\mystrtoul.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
*wcc386 ..\..\python\mystrtoul.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
||||||
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\pythonrun.obj : n:\python\python-1.4b0b\p&
|
n:\python\python-1.4b2\pc\wat_os2\pythonrun.obj : n:\python\python-1.4b2\pyt&
|
||||||
ython\pythonrun.c .AUTODEPEND
|
hon\pythonrun.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\pythonrun.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
*wcc386 ..\..\python\pythonrun.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
||||||
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\structmember.obj : n:\python\python-1.4b0&
|
n:\python\python-1.4b2\pc\wat_os2\structmember.obj : n:\python\python-1.4b2\&
|
||||||
b\python\structmember.c .AUTODEPEND
|
python\structmember.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\structmember.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
*wcc386 ..\..\python\structmember.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
|
||||||
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\sysmodule.obj : n:\python\python-1.4b0b\p&
|
n:\python\python-1.4b2\pc\wat_os2\sysmodule.obj : n:\python\python-1.4b2\pyt&
|
||||||
ython\sysmodule.c .AUTODEPEND
|
hon\sysmodule.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\sysmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
*wcc386 ..\..\python\sysmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
||||||
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\traceback.obj : n:\python\python-1.4b0b\p&
|
n:\python\python-1.4b2\pc\wat_os2\traceback.obj : n:\python\python-1.4b2\pyt&
|
||||||
ython\traceback.c .AUTODEPEND
|
hon\traceback.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\..\python\traceback.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
*wcc386 ..\..\python\traceback.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
|
||||||
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\config.obj : n:\python\python-1.4b0b\pc\c&
|
n:\python\python-1.4b2\pc\wat_os2\config.obj : n:\python\python-1.4b2\pc\con&
|
||||||
onfig.c .AUTODEPEND
|
fig.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\config.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w4 -e2&
|
*wcc386 ..\config.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w4 -e2&
|
||||||
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\posixmodule.obj : n:\python\python-1.4b0b&
|
n:\python\python-1.4b2\pc\wat_os2\pyth_os2.exe : n:\python\python-1.4b2\pc\w&
|
||||||
\pc\posixmodule.c .AUTODEPEND
|
at_os2\arraymodule.obj n:\python\python-1.4b2\pc\wat_os2\audioop.obj n:\pyth&
|
||||||
|
on\python-1.4b2\pc\wat_os2\binascii.obj n:\python\python-1.4b2\pc\wat_os2\cm&
|
||||||
|
athmodule.obj n:\python\python-1.4b2\pc\wat_os2\environment.obj n:\python\py&
|
||||||
|
thon-1.4b2\pc\wat_os2\getpath.obj n:\python\python-1.4b2\pc\wat_os2\imageop.&
|
||||||
|
obj n:\python\python-1.4b2\pc\wat_os2\main.obj n:\python\python-1.4b2\pc\wat&
|
||||||
|
_os2\mathmodule.obj n:\python\python-1.4b2\pc\wat_os2\md5c.obj n:\python\pyt&
|
||||||
|
hon-1.4b2\pc\wat_os2\md5module.obj n:\python\python-1.4b2\pc\wat_os2\newmodu&
|
||||||
|
le.obj n:\python\python-1.4b2\pc\wat_os2\posixmodule.obj n:\python\python-1.&
|
||||||
|
4b2\pc\wat_os2\regexmodule.obj n:\python\python-1.4b2\pc\wat_os2\regexpr.obj&
|
||||||
|
n:\python\python-1.4b2\pc\wat_os2\rgbimgmodule.obj n:\python\python-1.4b2\p&
|
||||||
|
c\wat_os2\rotormodule.obj n:\python\python-1.4b2\pc\wat_os2\signalmodule.obj&
|
||||||
|
n:\python\python-1.4b2\pc\wat_os2\soundex.obj n:\python\python-1.4b2\pc\wat&
|
||||||
|
_os2\stropmodule.obj n:\python\python-1.4b2\pc\wat_os2\structmodule.obj n:\p&
|
||||||
|
ython\python-1.4b2\pc\wat_os2\timemodule.obj n:\python\python-1.4b2\pc\wat_o&
|
||||||
|
s2\yuvconvert.obj n:\python\python-1.4b2\pc\wat_os2\abstract.obj n:\python\p&
|
||||||
|
ython-1.4b2\pc\wat_os2\accessobject.obj n:\python\python-1.4b2\pc\wat_os2\cl&
|
||||||
|
assobject.obj n:\python\python-1.4b2\pc\wat_os2\cobject.obj n:\python\python&
|
||||||
|
-1.4b2\pc\wat_os2\complexobject.obj n:\python\python-1.4b2\pc\wat_os2\fileob&
|
||||||
|
ject.obj n:\python\python-1.4b2\pc\wat_os2\floatobject.obj n:\python\python-&
|
||||||
|
1.4b2\pc\wat_os2\frameobject.obj n:\python\python-1.4b2\pc\wat_os2\funcobjec&
|
||||||
|
t.obj n:\python\python-1.4b2\pc\wat_os2\intobject.obj n:\python\python-1.4b2&
|
||||||
|
\pc\wat_os2\listobject.obj n:\python\python-1.4b2\pc\wat_os2\longobject.obj &
|
||||||
|
n:\python\python-1.4b2\pc\wat_os2\mappingobject.obj n:\python\python-1.4b2\p&
|
||||||
|
c\wat_os2\methodobject.obj n:\python\python-1.4b2\pc\wat_os2\moduleobject.ob&
|
||||||
|
j n:\python\python-1.4b2\pc\wat_os2\object.obj n:\python\python-1.4b2\pc\wat&
|
||||||
|
_os2\rangeobject.obj n:\python\python-1.4b2\pc\wat_os2\stringobject.obj n:\p&
|
||||||
|
ython\python-1.4b2\pc\wat_os2\tupleobject.obj n:\python\python-1.4b2\pc\wat_&
|
||||||
|
os2\typeobject.obj n:\python\python-1.4b2\pc\wat_os2\acceler.obj n:\python\p&
|
||||||
|
ython-1.4b2\pc\wat_os2\grammar1.obj n:\python\python-1.4b2\pc\wat_os2\myread&
|
||||||
|
line.obj n:\python\python-1.4b2\pc\wat_os2\node.obj n:\python\python-1.4b2\p&
|
||||||
|
c\wat_os2\parser.obj n:\python\python-1.4b2\pc\wat_os2\parsetok.obj n:\pytho&
|
||||||
|
n\python-1.4b2\pc\wat_os2\tokenizer.obj n:\python\python-1.4b2\pc\wat_os2\bl&
|
||||||
|
tinmodule.obj n:\python\python-1.4b2\pc\wat_os2\ceval.obj n:\python\python-1&
|
||||||
|
.4b2\pc\wat_os2\cgensupport.obj n:\python\python-1.4b2\pc\wat_os2\compile.ob&
|
||||||
|
j n:\python\python-1.4b2\pc\wat_os2\errors.obj n:\python\python-1.4b2\pc\wat&
|
||||||
|
_os2\frozen.obj n:\python\python-1.4b2\pc\wat_os2\getargs.obj n:\python\pyth&
|
||||||
|
on-1.4b2\pc\wat_os2\getcompiler.obj n:\python\python-1.4b2\pc\wat_os2\getcop&
|
||||||
|
yright.obj n:\python\python-1.4b2\pc\wat_os2\getmtime.obj n:\python\python-1&
|
||||||
|
.4b2\pc\wat_os2\getopt.obj n:\python\python-1.4b2\pc\wat_os2\getplatform.obj&
|
||||||
|
n:\python\python-1.4b2\pc\wat_os2\getversion.obj n:\python\python-1.4b2\pc\&
|
||||||
|
wat_os2\graminit.obj n:\python\python-1.4b2\pc\wat_os2\import.obj n:\python\&
|
||||||
|
python-1.4b2\pc\wat_os2\importdl.obj n:\python\python-1.4b2\pc\wat_os2\marsh&
|
||||||
|
al.obj n:\python\python-1.4b2\pc\wat_os2\modsupport.obj n:\python\python-1.4&
|
||||||
|
b2\pc\wat_os2\mystrtoul.obj n:\python\python-1.4b2\pc\wat_os2\pythonrun.obj &
|
||||||
|
n:\python\python-1.4b2\pc\wat_os2\structmember.obj n:\python\python-1.4b2\pc&
|
||||||
|
\wat_os2\sysmodule.obj n:\python\python-1.4b2\pc\wat_os2\traceback.obj n:\py&
|
||||||
|
thon\python-1.4b2\pc\wat_os2\config.obj .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
cd n:\python\python-1.4b2\pc\wat_os2
|
||||||
*wcc386 ..\posixmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w&
|
|
||||||
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
|
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.exe : n:\python\python-1.4b0b\pc&
|
|
||||||
\wat_os2\arraymodule.obj n:\python\python-1.4b0b\pc\wat_os2\audioop.obj n:\p&
|
|
||||||
ython\python-1.4b0b\pc\wat_os2\binascii.obj n:\python\python-1.4b0b\pc\wat_o&
|
|
||||||
s2\cmathmodule.obj n:\python\python-1.4b0b\pc\wat_os2\environment.obj n:\pyt&
|
|
||||||
hon\python-1.4b0b\pc\wat_os2\getpath.obj n:\python\python-1.4b0b\pc\wat_os2\&
|
|
||||||
imageop.obj n:\python\python-1.4b0b\pc\wat_os2\main.obj n:\python\python-1.4&
|
|
||||||
b0b\pc\wat_os2\mathmodule.obj n:\python\python-1.4b0b\pc\wat_os2\md5c.obj n:&
|
|
||||||
\python\python-1.4b0b\pc\wat_os2\md5module.obj n:\python\python-1.4b0b\pc\wa&
|
|
||||||
t_os2\newmodule.obj n:\python\python-1.4b0b\pc\wat_os2\regexmodule.obj n:\py&
|
|
||||||
thon\python-1.4b0b\pc\wat_os2\regexpr.obj n:\python\python-1.4b0b\pc\wat_os2&
|
|
||||||
\rgbimgmodule.obj n:\python\python-1.4b0b\pc\wat_os2\rotormodule.obj n:\pyth&
|
|
||||||
on\python-1.4b0b\pc\wat_os2\signalmodule.obj n:\python\python-1.4b0b\pc\wat_&
|
|
||||||
os2\soundex.obj n:\python\python-1.4b0b\pc\wat_os2\stropmodule.obj n:\python&
|
|
||||||
\python-1.4b0b\pc\wat_os2\structmodule.obj n:\python\python-1.4b0b\pc\wat_os&
|
|
||||||
2\timemodule.obj n:\python\python-1.4b0b\pc\wat_os2\yuvconvert.obj n:\python&
|
|
||||||
\python-1.4b0b\pc\wat_os2\abstract.obj n:\python\python-1.4b0b\pc\wat_os2\ac&
|
|
||||||
cessobject.obj n:\python\python-1.4b0b\pc\wat_os2\classobject.obj n:\python\&
|
|
||||||
python-1.4b0b\pc\wat_os2\cobject.obj n:\python\python-1.4b0b\pc\wat_os2\comp&
|
|
||||||
lexobject.obj n:\python\python-1.4b0b\pc\wat_os2\fileobject.obj n:\python\py&
|
|
||||||
thon-1.4b0b\pc\wat_os2\floatobject.obj n:\python\python-1.4b0b\pc\wat_os2\fr&
|
|
||||||
ameobject.obj n:\python\python-1.4b0b\pc\wat_os2\funcobject.obj n:\python\py&
|
|
||||||
thon-1.4b0b\pc\wat_os2\intobject.obj n:\python\python-1.4b0b\pc\wat_os2\list&
|
|
||||||
object.obj n:\python\python-1.4b0b\pc\wat_os2\longobject.obj n:\python\pytho&
|
|
||||||
n-1.4b0b\pc\wat_os2\mappingobject.obj n:\python\python-1.4b0b\pc\wat_os2\met&
|
|
||||||
hodobject.obj n:\python\python-1.4b0b\pc\wat_os2\moduleobject.obj n:\python\&
|
|
||||||
python-1.4b0b\pc\wat_os2\object.obj n:\python\python-1.4b0b\pc\wat_os2\range&
|
|
||||||
object.obj n:\python\python-1.4b0b\pc\wat_os2\stringobject.obj n:\python\pyt&
|
|
||||||
hon-1.4b0b\pc\wat_os2\tupleobject.obj n:\python\python-1.4b0b\pc\wat_os2\typ&
|
|
||||||
eobject.obj n:\python\python-1.4b0b\pc\wat_os2\acceler.obj n:\python\python-&
|
|
||||||
1.4b0b\pc\wat_os2\grammar1.obj n:\python\python-1.4b0b\pc\wat_os2\myreadline&
|
|
||||||
.obj n:\python\python-1.4b0b\pc\wat_os2\node.obj n:\python\python-1.4b0b\pc\&
|
|
||||||
wat_os2\parser.obj n:\python\python-1.4b0b\pc\wat_os2\parsetok.obj n:\python&
|
|
||||||
\python-1.4b0b\pc\wat_os2\tokenizer.obj n:\python\python-1.4b0b\pc\wat_os2\b&
|
|
||||||
ltinmodule.obj n:\python\python-1.4b0b\pc\wat_os2\ceval.obj n:\python\python&
|
|
||||||
-1.4b0b\pc\wat_os2\cgensupport.obj n:\python\python-1.4b0b\pc\wat_os2\compil&
|
|
||||||
e.obj n:\python\python-1.4b0b\pc\wat_os2\errors.obj n:\python\python-1.4b0b\&
|
|
||||||
pc\wat_os2\frozen.obj n:\python\python-1.4b0b\pc\wat_os2\getargs.obj n:\pyth&
|
|
||||||
on\python-1.4b0b\pc\wat_os2\getcompiler.obj n:\python\python-1.4b0b\pc\wat_o&
|
|
||||||
s2\getcopyright.obj n:\python\python-1.4b0b\pc\wat_os2\getmtime.obj n:\pytho&
|
|
||||||
n\python-1.4b0b\pc\wat_os2\getopt.obj n:\python\python-1.4b0b\pc\wat_os2\get&
|
|
||||||
platform.obj n:\python\python-1.4b0b\pc\wat_os2\getversion.obj n:\python\pyt&
|
|
||||||
hon-1.4b0b\pc\wat_os2\graminit.obj n:\python\python-1.4b0b\pc\wat_os2\import&
|
|
||||||
.obj n:\python\python-1.4b0b\pc\wat_os2\importdl.obj n:\python\python-1.4b0b&
|
|
||||||
\pc\wat_os2\marshal.obj n:\python\python-1.4b0b\pc\wat_os2\modsupport.obj n:&
|
|
||||||
\python\python-1.4b0b\pc\wat_os2\mystrtoul.obj n:\python\python-1.4b0b\pc\wa&
|
|
||||||
t_os2\pythonrun.obj n:\python\python-1.4b0b\pc\wat_os2\structmember.obj n:\p&
|
|
||||||
ython\python-1.4b0b\pc\wat_os2\sysmodule.obj n:\python\python-1.4b0b\pc\wat_&
|
|
||||||
os2\traceback.obj n:\python\python-1.4b0b\pc\wat_os2\config.obj n:\python\py&
|
|
||||||
thon-1.4b0b\pc\wat_os2\posixmodule.obj .AUTODEPEND
|
|
||||||
@n:
|
|
||||||
cd n:\python\python-1.4b0b\pc\wat_os2
|
|
||||||
@%write pyth_os2.lk1 NAME pyth_os2
|
@%write pyth_os2.lk1 NAME pyth_os2
|
||||||
@%append pyth_os2.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
|
@%append pyth_os2.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
|
||||||
ule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c&
|
ule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c&
|
||||||
.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.ob&
|
.obj,md5module.obj,newmodule.obj,posixmodule.obj,regexmodule.obj,regexpr.obj&
|
||||||
j,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.&
|
,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.o&
|
||||||
obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.&
|
bj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.&
|
||||||
obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject&
|
obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject&
|
||||||
.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobjec&
|
.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.&
|
||||||
t.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobj&
|
obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobje&
|
||||||
ect.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.o&
|
ct.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.&
|
||||||
bj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,&
|
obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodul&
|
||||||
cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.ob&
|
e.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.ob&
|
||||||
j,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,gr&
|
j,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,g&
|
||||||
aminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,&
|
etversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.ob&
|
||||||
pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,posixm&
|
j,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,c&
|
||||||
odule.obj
|
onfig.obj
|
||||||
@%append pyth_os2.lk1
|
@%append pyth_os2.lk1
|
||||||
!ifneq BLANK ""
|
!ifneq BLANK ""
|
||||||
*wlib -q -n -b pyth_os2.imp
|
*wlib -q -n -b pyth_os2.imp
|
||||||
|
|
|
@ -58,7 +58,7 @@ WVList
|
||||||
0
|
0
|
||||||
14
|
14
|
||||||
WPickList
|
WPickList
|
||||||
75
|
77
|
||||||
15
|
15
|
||||||
MItem
|
MItem
|
||||||
3
|
3
|
||||||
|
@ -237,8 +237,8 @@ WVList
|
||||||
0
|
0
|
||||||
56
|
56
|
||||||
MItem
|
MItem
|
||||||
23
|
27
|
||||||
..\..\modules\getpath.c
|
..\..\modules\errnomodule.c
|
||||||
57
|
57
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -256,7 +256,7 @@ WVList
|
||||||
60
|
60
|
||||||
MItem
|
MItem
|
||||||
23
|
23
|
||||||
..\..\modules\imageop.c
|
..\..\modules\getpath.c
|
||||||
61
|
61
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -273,8 +273,8 @@ WVList
|
||||||
0
|
0
|
||||||
64
|
64
|
||||||
MItem
|
MItem
|
||||||
20
|
23
|
||||||
..\..\modules\main.c
|
..\..\modules\imageop.c
|
||||||
65
|
65
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -291,8 +291,8 @@ WVList
|
||||||
0
|
0
|
||||||
68
|
68
|
||||||
MItem
|
MItem
|
||||||
26
|
20
|
||||||
..\..\modules\mathmodule.c
|
..\..\modules\main.c
|
||||||
69
|
69
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -309,8 +309,8 @@ WVList
|
||||||
0
|
0
|
||||||
72
|
72
|
||||||
MItem
|
MItem
|
||||||
20
|
26
|
||||||
..\..\modules\md5c.c
|
..\..\modules\mathmodule.c
|
||||||
73
|
73
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -327,8 +327,8 @@ WVList
|
||||||
0
|
0
|
||||||
76
|
76
|
||||||
MItem
|
MItem
|
||||||
25
|
20
|
||||||
..\..\modules\md5module.c
|
..\..\modules\md5c.c
|
||||||
77
|
77
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -346,7 +346,7 @@ WVList
|
||||||
80
|
80
|
||||||
MItem
|
MItem
|
||||||
25
|
25
|
||||||
..\..\modules\newmodule.c
|
..\..\modules\md5module.c
|
||||||
81
|
81
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -363,8 +363,8 @@ WVList
|
||||||
0
|
0
|
||||||
84
|
84
|
||||||
MItem
|
MItem
|
||||||
27
|
25
|
||||||
..\..\modules\regexmodule.c
|
..\..\modules\newmodule.c
|
||||||
85
|
85
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -381,8 +381,8 @@ WVList
|
||||||
0
|
0
|
||||||
88
|
88
|
||||||
MItem
|
MItem
|
||||||
23
|
24
|
||||||
..\..\modules\regexpr.c
|
..\..\modules\operator.c
|
||||||
89
|
89
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -399,8 +399,8 @@ WVList
|
||||||
0
|
0
|
||||||
92
|
92
|
||||||
MItem
|
MItem
|
||||||
28
|
27
|
||||||
..\..\modules\rgbimgmodule.c
|
..\..\modules\posixmodule.c
|
||||||
93
|
93
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -418,7 +418,7 @@ WVList
|
||||||
96
|
96
|
||||||
MItem
|
MItem
|
||||||
27
|
27
|
||||||
..\..\modules\rotormodule.c
|
..\..\modules\regexmodule.c
|
||||||
97
|
97
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -435,8 +435,8 @@ WVList
|
||||||
0
|
0
|
||||||
100
|
100
|
||||||
MItem
|
MItem
|
||||||
28
|
23
|
||||||
..\..\modules\signalmodule.c
|
..\..\modules\regexpr.c
|
||||||
101
|
101
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -453,8 +453,8 @@ WVList
|
||||||
0
|
0
|
||||||
104
|
104
|
||||||
MItem
|
MItem
|
||||||
23
|
28
|
||||||
..\..\modules\soundex.c
|
..\..\modules\rgbimgmodule.c
|
||||||
105
|
105
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -472,7 +472,7 @@ WVList
|
||||||
108
|
108
|
||||||
MItem
|
MItem
|
||||||
27
|
27
|
||||||
..\..\modules\stropmodule.c
|
..\..\modules\rotormodule.c
|
||||||
109
|
109
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -490,7 +490,7 @@ WVList
|
||||||
112
|
112
|
||||||
MItem
|
MItem
|
||||||
28
|
28
|
||||||
..\..\modules\structmodule.c
|
..\..\modules\signalmodule.c
|
||||||
113
|
113
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -507,8 +507,8 @@ WVList
|
||||||
0
|
0
|
||||||
116
|
116
|
||||||
MItem
|
MItem
|
||||||
26
|
23
|
||||||
..\..\modules\timemodule.c
|
..\..\modules\soundex.c
|
||||||
117
|
117
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -525,8 +525,8 @@ WVList
|
||||||
0
|
0
|
||||||
120
|
120
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\modules\yuvconvert.c
|
..\..\modules\stropmodule.c
|
||||||
121
|
121
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -543,8 +543,8 @@ WVList
|
||||||
0
|
0
|
||||||
124
|
124
|
||||||
MItem
|
MItem
|
||||||
24
|
28
|
||||||
..\..\objects\abstract.c
|
..\..\modules\structmodule.c
|
||||||
125
|
125
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -561,8 +561,8 @@ WVList
|
||||||
0
|
0
|
||||||
128
|
128
|
||||||
MItem
|
MItem
|
||||||
28
|
26
|
||||||
..\..\objects\accessobject.c
|
..\..\modules\timemodule.c
|
||||||
129
|
129
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -579,8 +579,8 @@ WVList
|
||||||
0
|
0
|
||||||
132
|
132
|
||||||
MItem
|
MItem
|
||||||
27
|
26
|
||||||
..\..\objects\classobject.c
|
..\..\modules\yuvconvert.c
|
||||||
133
|
133
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -597,8 +597,8 @@ WVList
|
||||||
0
|
0
|
||||||
136
|
136
|
||||||
MItem
|
MItem
|
||||||
23
|
24
|
||||||
..\..\objects\cobject.c
|
..\..\objects\abstract.c
|
||||||
137
|
137
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -615,8 +615,8 @@ WVList
|
||||||
0
|
0
|
||||||
140
|
140
|
||||||
MItem
|
MItem
|
||||||
29
|
28
|
||||||
..\..\objects\complexobject.c
|
..\..\objects\accessobject.c
|
||||||
141
|
141
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -633,8 +633,8 @@ WVList
|
||||||
0
|
0
|
||||||
144
|
144
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\objects\fileobject.c
|
..\..\objects\classobject.c
|
||||||
145
|
145
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -651,8 +651,8 @@ WVList
|
||||||
0
|
0
|
||||||
148
|
148
|
||||||
MItem
|
MItem
|
||||||
27
|
23
|
||||||
..\..\objects\floatobject.c
|
..\..\objects\cobject.c
|
||||||
149
|
149
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -669,8 +669,8 @@ WVList
|
||||||
0
|
0
|
||||||
152
|
152
|
||||||
MItem
|
MItem
|
||||||
27
|
29
|
||||||
..\..\objects\frameobject.c
|
..\..\objects\complexobject.c
|
||||||
153
|
153
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -688,7 +688,7 @@ WVList
|
||||||
156
|
156
|
||||||
MItem
|
MItem
|
||||||
26
|
26
|
||||||
..\..\objects\funcobject.c
|
..\..\objects\fileobject.c
|
||||||
157
|
157
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -705,8 +705,8 @@ WVList
|
||||||
0
|
0
|
||||||
160
|
160
|
||||||
MItem
|
MItem
|
||||||
25
|
27
|
||||||
..\..\objects\intobject.c
|
..\..\objects\floatobject.c
|
||||||
161
|
161
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -723,8 +723,8 @@ WVList
|
||||||
0
|
0
|
||||||
164
|
164
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\objects\listobject.c
|
..\..\objects\frameobject.c
|
||||||
165
|
165
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -742,7 +742,7 @@ WVList
|
||||||
168
|
168
|
||||||
MItem
|
MItem
|
||||||
26
|
26
|
||||||
..\..\objects\longobject.c
|
..\..\objects\funcobject.c
|
||||||
169
|
169
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -759,8 +759,8 @@ WVList
|
||||||
0
|
0
|
||||||
172
|
172
|
||||||
MItem
|
MItem
|
||||||
29
|
25
|
||||||
..\..\objects\mappingobject.c
|
..\..\objects\intobject.c
|
||||||
173
|
173
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -777,8 +777,8 @@ WVList
|
||||||
0
|
0
|
||||||
176
|
176
|
||||||
MItem
|
MItem
|
||||||
28
|
26
|
||||||
..\..\objects\methodobject.c
|
..\..\objects\listobject.c
|
||||||
177
|
177
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -795,8 +795,8 @@ WVList
|
||||||
0
|
0
|
||||||
180
|
180
|
||||||
MItem
|
MItem
|
||||||
28
|
26
|
||||||
..\..\objects\moduleobject.c
|
..\..\objects\longobject.c
|
||||||
181
|
181
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -813,8 +813,8 @@ WVList
|
||||||
0
|
0
|
||||||
184
|
184
|
||||||
MItem
|
MItem
|
||||||
22
|
29
|
||||||
..\..\objects\object.c
|
..\..\objects\mappingobject.c
|
||||||
185
|
185
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -831,8 +831,8 @@ WVList
|
||||||
0
|
0
|
||||||
188
|
188
|
||||||
MItem
|
MItem
|
||||||
27
|
28
|
||||||
..\..\objects\rangeobject.c
|
..\..\objects\methodobject.c
|
||||||
189
|
189
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -850,7 +850,7 @@ WVList
|
||||||
192
|
192
|
||||||
MItem
|
MItem
|
||||||
28
|
28
|
||||||
..\..\objects\stringobject.c
|
..\..\objects\moduleobject.c
|
||||||
193
|
193
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -867,8 +867,8 @@ WVList
|
||||||
0
|
0
|
||||||
196
|
196
|
||||||
MItem
|
MItem
|
||||||
27
|
22
|
||||||
..\..\objects\tupleobject.c
|
..\..\objects\object.c
|
||||||
197
|
197
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -885,8 +885,8 @@ WVList
|
||||||
0
|
0
|
||||||
200
|
200
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\objects\typeobject.c
|
..\..\objects\rangeobject.c
|
||||||
201
|
201
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -903,8 +903,8 @@ WVList
|
||||||
0
|
0
|
||||||
204
|
204
|
||||||
MItem
|
MItem
|
||||||
22
|
28
|
||||||
..\..\parser\acceler.c
|
..\..\objects\stringobject.c
|
||||||
205
|
205
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -921,8 +921,8 @@ WVList
|
||||||
0
|
0
|
||||||
208
|
208
|
||||||
MItem
|
MItem
|
||||||
23
|
27
|
||||||
..\..\parser\grammar1.c
|
..\..\objects\tupleobject.c
|
||||||
209
|
209
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -939,8 +939,8 @@ WVList
|
||||||
0
|
0
|
||||||
212
|
212
|
||||||
MItem
|
MItem
|
||||||
25
|
26
|
||||||
..\..\parser\myreadline.c
|
..\..\objects\typeobject.c
|
||||||
213
|
213
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -957,8 +957,8 @@ WVList
|
||||||
0
|
0
|
||||||
216
|
216
|
||||||
MItem
|
MItem
|
||||||
19
|
22
|
||||||
..\..\parser\node.c
|
..\..\parser\acceler.c
|
||||||
217
|
217
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -975,8 +975,8 @@ WVList
|
||||||
0
|
0
|
||||||
220
|
220
|
||||||
MItem
|
MItem
|
||||||
21
|
23
|
||||||
..\..\parser\parser.c
|
..\..\parser\grammar1.c
|
||||||
221
|
221
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -993,8 +993,8 @@ WVList
|
||||||
0
|
0
|
||||||
224
|
224
|
||||||
MItem
|
MItem
|
||||||
23
|
25
|
||||||
..\..\parser\parsetok.c
|
..\..\parser\myreadline.c
|
||||||
225
|
225
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1011,8 +1011,8 @@ WVList
|
||||||
0
|
0
|
||||||
228
|
228
|
||||||
MItem
|
MItem
|
||||||
24
|
19
|
||||||
..\..\parser\tokenizer.c
|
..\..\parser\node.c
|
||||||
229
|
229
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1029,8 +1029,8 @@ WVList
|
||||||
0
|
0
|
||||||
232
|
232
|
||||||
MItem
|
MItem
|
||||||
26
|
21
|
||||||
..\..\python\bltinmodule.c
|
..\..\parser\parser.c
|
||||||
233
|
233
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1047,8 +1047,8 @@ WVList
|
||||||
0
|
0
|
||||||
236
|
236
|
||||||
MItem
|
MItem
|
||||||
20
|
23
|
||||||
..\..\python\ceval.c
|
..\..\parser\parsetok.c
|
||||||
237
|
237
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1065,8 +1065,8 @@ WVList
|
||||||
0
|
0
|
||||||
240
|
240
|
||||||
MItem
|
MItem
|
||||||
26
|
24
|
||||||
..\..\python\cgensupport.c
|
..\..\parser\tokenizer.c
|
||||||
241
|
241
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1083,8 +1083,8 @@ WVList
|
||||||
0
|
0
|
||||||
244
|
244
|
||||||
MItem
|
MItem
|
||||||
22
|
26
|
||||||
..\..\python\compile.c
|
..\..\python\bltinmodule.c
|
||||||
245
|
245
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1101,8 +1101,8 @@ WVList
|
||||||
0
|
0
|
||||||
248
|
248
|
||||||
MItem
|
MItem
|
||||||
21
|
20
|
||||||
..\..\python\errors.c
|
..\..\python\ceval.c
|
||||||
249
|
249
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1119,8 +1119,8 @@ WVList
|
||||||
0
|
0
|
||||||
252
|
252
|
||||||
MItem
|
MItem
|
||||||
21
|
26
|
||||||
..\..\python\frozen.c
|
..\..\python\cgensupport.c
|
||||||
253
|
253
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1138,7 +1138,7 @@ WVList
|
||||||
256
|
256
|
||||||
MItem
|
MItem
|
||||||
22
|
22
|
||||||
..\..\python\getargs.c
|
..\..\python\compile.c
|
||||||
257
|
257
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1155,8 +1155,8 @@ WVList
|
||||||
0
|
0
|
||||||
260
|
260
|
||||||
MItem
|
MItem
|
||||||
26
|
21
|
||||||
..\..\python\getcompiler.c
|
..\..\python\errors.c
|
||||||
261
|
261
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1173,8 +1173,8 @@ WVList
|
||||||
0
|
0
|
||||||
264
|
264
|
||||||
MItem
|
MItem
|
||||||
27
|
21
|
||||||
..\..\python\getcopyright.c
|
..\..\python\frozen.c
|
||||||
265
|
265
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1191,8 +1191,8 @@ WVList
|
||||||
0
|
0
|
||||||
268
|
268
|
||||||
MItem
|
MItem
|
||||||
23
|
22
|
||||||
..\..\python\getmtime.c
|
..\..\python\getargs.c
|
||||||
269
|
269
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1209,8 +1209,8 @@ WVList
|
||||||
0
|
0
|
||||||
272
|
272
|
||||||
MItem
|
MItem
|
||||||
21
|
26
|
||||||
..\..\python\getopt.c
|
..\..\python\getcompiler.c
|
||||||
273
|
273
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1227,8 +1227,8 @@ WVList
|
||||||
0
|
0
|
||||||
276
|
276
|
||||||
MItem
|
MItem
|
||||||
26
|
27
|
||||||
..\..\python\getplatform.c
|
..\..\python\getcopyright.c
|
||||||
277
|
277
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1245,8 +1245,8 @@ WVList
|
||||||
0
|
0
|
||||||
280
|
280
|
||||||
MItem
|
MItem
|
||||||
25
|
23
|
||||||
..\..\python\getversion.c
|
..\..\python\getmtime.c
|
||||||
281
|
281
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1263,8 +1263,8 @@ WVList
|
||||||
0
|
0
|
||||||
284
|
284
|
||||||
MItem
|
MItem
|
||||||
23
|
21
|
||||||
..\..\python\graminit.c
|
..\..\python\getopt.c
|
||||||
285
|
285
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1281,8 +1281,8 @@ WVList
|
||||||
0
|
0
|
||||||
288
|
288
|
||||||
MItem
|
MItem
|
||||||
21
|
26
|
||||||
..\..\python\import.c
|
..\..\python\getplatform.c
|
||||||
289
|
289
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1299,8 +1299,8 @@ WVList
|
||||||
0
|
0
|
||||||
292
|
292
|
||||||
MItem
|
MItem
|
||||||
23
|
25
|
||||||
..\..\python\importdl.c
|
..\..\python\getversion.c
|
||||||
293
|
293
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1317,8 +1317,8 @@ WVList
|
||||||
0
|
0
|
||||||
296
|
296
|
||||||
MItem
|
MItem
|
||||||
22
|
23
|
||||||
..\..\python\marshal.c
|
..\..\python\graminit.c
|
||||||
297
|
297
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1335,8 +1335,8 @@ WVList
|
||||||
0
|
0
|
||||||
300
|
300
|
||||||
MItem
|
MItem
|
||||||
25
|
21
|
||||||
..\..\python\modsupport.c
|
..\..\python\import.c
|
||||||
301
|
301
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1353,8 +1353,8 @@ WVList
|
||||||
0
|
0
|
||||||
304
|
304
|
||||||
MItem
|
MItem
|
||||||
24
|
23
|
||||||
..\..\python\mystrtoul.c
|
..\..\python\importdl.c
|
||||||
305
|
305
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1371,8 +1371,8 @@ WVList
|
||||||
0
|
0
|
||||||
308
|
308
|
||||||
MItem
|
MItem
|
||||||
24
|
22
|
||||||
..\..\python\pythonrun.c
|
..\..\python\marshal.c
|
||||||
309
|
309
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1389,8 +1389,8 @@ WVList
|
||||||
0
|
0
|
||||||
312
|
312
|
||||||
MItem
|
MItem
|
||||||
27
|
25
|
||||||
..\..\python\structmember.c
|
..\..\python\modsupport.c
|
||||||
313
|
313
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1408,7 +1408,7 @@ WVList
|
||||||
316
|
316
|
||||||
MItem
|
MItem
|
||||||
24
|
24
|
||||||
..\..\python\sysmodule.c
|
..\..\python\mystrtoul.c
|
||||||
317
|
317
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1426,7 +1426,7 @@ WVList
|
||||||
320
|
320
|
||||||
MItem
|
MItem
|
||||||
24
|
24
|
||||||
..\..\python\traceback.c
|
..\..\python\pythonrun.c
|
||||||
321
|
321
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1443,8 +1443,8 @@ WVList
|
||||||
0
|
0
|
||||||
324
|
324
|
||||||
MItem
|
MItem
|
||||||
11
|
27
|
||||||
..\config.c
|
..\..\python\structmember.c
|
||||||
325
|
325
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1461,8 +1461,8 @@ WVList
|
||||||
0
|
0
|
||||||
328
|
328
|
||||||
MItem
|
MItem
|
||||||
16
|
24
|
||||||
..\posixmodule.c
|
..\..\python\sysmodule.c
|
||||||
329
|
329
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
|
@ -1477,3 +1477,39 @@ WVList
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
|
332
|
||||||
|
MItem
|
||||||
|
24
|
||||||
|
..\..\python\traceback.c
|
||||||
|
333
|
||||||
|
WString
|
||||||
|
4
|
||||||
|
COBJ
|
||||||
|
334
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
335
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
15
|
||||||
|
1
|
||||||
|
1
|
||||||
|
0
|
||||||
|
336
|
||||||
|
MItem
|
||||||
|
11
|
||||||
|
..\config.c
|
||||||
|
337
|
||||||
|
WString
|
||||||
|
4
|
||||||
|
COBJ
|
||||||
|
338
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
339
|
||||||
|
WVList
|
||||||
|
0
|
||||||
|
15
|
||||||
|
1
|
||||||
|
1
|
||||||
|
0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue