mirror of
https://github.com/python/cpython.git
synced 2025-09-24 17:33:29 +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},
|
||||||
|
|
55
PC/config.h
55
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.
|
||||||
|
@ -257,7 +294,7 @@ typedef int pid_t;
|
||||||
This requires the "dl" library by Jack Jansen,
|
This requires the "dl" library by Jack Jansen,
|
||||||
ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
|
ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
|
||||||
Don't bother on IRIX 5, it already has dynamic linking using SunOS
|
Don't bother on IRIX 5, it already has dynamic linking using SunOS
|
||||||
style shared libraries */
|
style shared libraries */
|
||||||
/* #undef WITH_SGI_DL */
|
/* #undef WITH_SGI_DL */
|
||||||
|
|
||||||
/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
|
/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
|
||||||
|
@ -268,7 +305,7 @@ typedef int pid_t;
|
||||||
as well as the "GNU dld" library,
|
as well as the "GNU dld" library,
|
||||||
ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
|
ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
|
||||||
Don't bother on SunOS 4 or 5, they already have dynamic linking using
|
Don't bother on SunOS 4 or 5, they already have dynamic linking using
|
||||||
shared libraries */
|
shared libraries */
|
||||||
/* #undef WITH_DL_DLD */
|
/* #undef WITH_DL_DLD */
|
||||||
|
|
||||||
/* Define if you want to compile in rudimentary thread support */
|
/* Define if you want to compile in rudimentary thread support */
|
||||||
|
|
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()
|
|
@ -1,5 +1,5 @@
|
||||||
NAME
|
NAME
|
||||||
EXETYPE WINDOWS
|
EXETYPE WINDOWS
|
||||||
CODE PRELOAD MOVABLE DISCARDABLE
|
CODE PRELOAD MOVABLE DISCARDABLE
|
||||||
DATA PRELOAD MOVABLE
|
DATA PRELOAD MOVABLE
|
||||||
HEAPSIZE 4096
|
HEAPSIZE 4096
|
||||||
|
|
|
@ -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
|
||||||
|
|
10
PC/python.mk
10
PC/python.mk
|
@ -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
|
||||||
|
|
126
PC/python.wpj
126
PC/python.wpj
|
@ -1,63 +1,63 @@
|
||||||
40
|
40
|
||||||
projectIdent
|
projectIdent
|
||||||
0
|
0
|
||||||
VpeMain
|
VpeMain
|
||||||
1
|
1
|
||||||
WRect
|
WRect
|
||||||
0
|
0
|
||||||
0
|
0
|
||||||
9920
|
9920
|
||||||
8704
|
8704
|
||||||
2
|
2
|
||||||
MProject
|
MProject
|
||||||
3
|
3
|
||||||
MCommand
|
MCommand
|
||||||
0
|
0
|
||||||
4
|
4
|
||||||
MCommand
|
MCommand
|
||||||
0
|
0
|
||||||
2
|
2
|
||||||
5
|
5
|
||||||
WFileName
|
WFileName
|
||||||
20
|
20
|
||||||
wat_os2\pyth_os2.tgt
|
wat_os2\pyth_os2.tgt
|
||||||
6
|
6
|
||||||
WFileName
|
WFileName
|
||||||
20
|
20
|
||||||
wat_dos\pyth_dos.tgt
|
wat_dos\pyth_dos.tgt
|
||||||
7
|
7
|
||||||
WVList
|
WVList
|
||||||
2
|
2
|
||||||
8
|
8
|
||||||
VComponent
|
VComponent
|
||||||
9
|
9
|
||||||
WRect
|
WRect
|
||||||
832
|
832
|
||||||
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
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
NAME makesrc
|
NAME makesrc
|
||||||
FIL makesrc.obj
|
FIL makesrc.obj
|
||||||
|
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
!define BLANK ""
|
!define BLANK ""
|
||||||
n:\python\python-1.4b0b\pc\utils\makesrc.obj : n:\python\python-1.4b0b\pc\ut&
|
n:\python\python-1.4b0b\pc\utils\makesrc.obj : n:\python\python-1.4b0b\pc\ut&
|
||||||
ils\makesrc.c .AUTODEPEND
|
ils\makesrc.c .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\utils
|
cd n:\python\python-1.4b0b\pc\utils
|
||||||
*wcc386 makesrc.c -i=C:\WATCOM\h;C:\WATCOM\h\nt -w4 -e25 -ei -zp4 -zq -otex&
|
*wcc386 makesrc.c -i=C:\WATCOM\h;C:\WATCOM\h\nt -w4 -e25 -ei -zp4 -zq -otex&
|
||||||
an -d1 -5r -bt=nt -mf
|
an -d1 -5r -bt=nt -mf
|
||||||
|
|
||||||
n:\python\python-1.4b0b\pc\utils\makesrc.exe : n:\python\python-1.4b0b\pc\ut&
|
n:\python\python-1.4b0b\pc\utils\makesrc.exe : n:\python\python-1.4b0b\pc\ut&
|
||||||
ils\makesrc.obj .AUTODEPEND
|
ils\makesrc.obj .AUTODEPEND
|
||||||
@n:
|
@n:
|
||||||
cd n:\python\python-1.4b0b\pc\utils
|
cd n:\python\python-1.4b0b\pc\utils
|
||||||
@%write makesrc.lk1 NAME makesrc
|
@%write makesrc.lk1 NAME makesrc
|
||||||
@%append makesrc.lk1 FIL makesrc.obj
|
@%append makesrc.lk1 FIL makesrc.obj
|
||||||
@%append makesrc.lk1
|
@%append makesrc.lk1
|
||||||
!ifneq BLANK ""
|
!ifneq BLANK ""
|
||||||
*wlib -q -n -b makesrc.imp
|
*wlib -q -n -b makesrc.imp
|
||||||
@%append makesrc.lk1 LIBR makesrc.imp
|
@%append makesrc.lk1 LIBR makesrc.imp
|
||||||
!endif
|
!endif
|
||||||
*wlink SYS nt op m op st=20k op maxe=25 op q op symf @makesrc.lk1
|
*wlink SYS nt op m op st=20k op maxe=25 op q op symf @makesrc.lk1
|
||||||
!ifneq BLANK ""
|
!ifneq BLANK ""
|
||||||
wrc -q -ad makesrc.exe
|
wrc -q -ad makesrc.exe
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
|
@ -1,185 +1,185 @@
|
||||||
40
|
40
|
||||||
targetIdent
|
targetIdent
|
||||||
0
|
0
|
||||||
MProject
|
MProject
|
||||||
1
|
1
|
||||||
MComponent
|
MComponent
|
||||||
0
|
0
|
||||||
2
|
2
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
NEXE
|
NEXE
|
||||||
3
|
3
|
||||||
WString
|
WString
|
||||||
5
|
5
|
||||||
nc2en
|
nc2en
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
0
|
0
|
||||||
4
|
4
|
||||||
MCommand
|
MCommand
|
||||||
0
|
0
|
||||||
5
|
5
|
||||||
MCommand
|
MCommand
|
||||||
0
|
0
|
||||||
6
|
6
|
||||||
MItem
|
MItem
|
||||||
11
|
11
|
||||||
makesrc.exe
|
makesrc.exe
|
||||||
7
|
7
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
NEXE
|
NEXE
|
||||||
8
|
8
|
||||||
WVList
|
WVList
|
||||||
2
|
2
|
||||||
9
|
9
|
||||||
MVState
|
MVState
|
||||||
10
|
10
|
||||||
WString
|
WString
|
||||||
7
|
7
|
||||||
WINLINK
|
WINLINK
|
||||||
11
|
11
|
||||||
WString
|
WString
|
||||||
11
|
11
|
||||||
?????Stack:
|
?????Stack:
|
||||||
1
|
1
|
||||||
12
|
12
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
20k
|
20k
|
||||||
0
|
0
|
||||||
13
|
13
|
||||||
MVState
|
MVState
|
||||||
14
|
14
|
||||||
WString
|
WString
|
||||||
7
|
7
|
||||||
WINLINK
|
WINLINK
|
||||||
15
|
15
|
||||||
WString
|
WString
|
||||||
11
|
11
|
||||||
?????Stack:
|
?????Stack:
|
||||||
0
|
0
|
||||||
16
|
16
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
20k
|
20k
|
||||||
0
|
0
|
||||||
17
|
17
|
||||||
WVList
|
WVList
|
||||||
0
|
0
|
||||||
-1
|
-1
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
18
|
18
|
||||||
WPickList
|
WPickList
|
||||||
2
|
2
|
||||||
19
|
19
|
||||||
MItem
|
MItem
|
||||||
3
|
3
|
||||||
*.c
|
*.c
|
||||||
20
|
20
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
COBJ
|
COBJ
|
||||||
21
|
21
|
||||||
WVList
|
WVList
|
||||||
6
|
6
|
||||||
22
|
22
|
||||||
MCState
|
MCState
|
||||||
23
|
23
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
WCC
|
WCC
|
||||||
24
|
24
|
||||||
WString
|
WString
|
||||||
31
|
31
|
||||||
?????Force enums to be type int
|
?????Force enums to be type int
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
25
|
25
|
||||||
MRState
|
MRState
|
||||||
26
|
26
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
WCC
|
WCC
|
||||||
27
|
27
|
||||||
WString
|
WString
|
||||||
20
|
20
|
||||||
?????Pack structures
|
?????Pack structures
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
28
|
28
|
||||||
MRState
|
MRState
|
||||||
29
|
29
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
WCC
|
WCC
|
||||||
30
|
30
|
||||||
WString
|
WString
|
||||||
21
|
21
|
||||||
?????4 byte alignment
|
?????4 byte alignment
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
31
|
31
|
||||||
MCState
|
MCState
|
||||||
32
|
32
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
WCC
|
WCC
|
||||||
33
|
33
|
||||||
WString
|
WString
|
||||||
31
|
31
|
||||||
?????Force enums to be type int
|
?????Force enums to be type int
|
||||||
0
|
0
|
||||||
1
|
1
|
||||||
34
|
34
|
||||||
MRState
|
MRState
|
||||||
35
|
35
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
WCC
|
WCC
|
||||||
36
|
36
|
||||||
WString
|
WString
|
||||||
20
|
20
|
||||||
?????Pack structures
|
?????Pack structures
|
||||||
0
|
0
|
||||||
0
|
0
|
||||||
37
|
37
|
||||||
MRState
|
MRState
|
||||||
38
|
38
|
||||||
WString
|
WString
|
||||||
3
|
3
|
||||||
WCC
|
WCC
|
||||||
39
|
39
|
||||||
WString
|
WString
|
||||||
21
|
21
|
||||||
?????4 byte alignment
|
?????4 byte alignment
|
||||||
0
|
0
|
||||||
1
|
1
|
||||||
40
|
40
|
||||||
WVList
|
WVList
|
||||||
0
|
0
|
||||||
-1
|
-1
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
41
|
41
|
||||||
MItem
|
MItem
|
||||||
9
|
9
|
||||||
makesrc.c
|
makesrc.c
|
||||||
42
|
42
|
||||||
WString
|
WString
|
||||||
4
|
4
|
||||||
COBJ
|
COBJ
|
||||||
43
|
43
|
||||||
WVList
|
WVList
|
||||||
0
|
0
|
||||||
44
|
44
|
||||||
WVList
|
WVList
|
||||||
0
|
0
|
||||||
19
|
19
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
project : n:\python\python-1.4b0b\pc\utils\makesrc.exe .SYMBOLIC
|
project : n:\python\python-1.4b0b\pc\utils\makesrc.exe .SYMBOLIC
|
||||||
|
|
||||||
!include n:\python\python-1.4b0b\pc\utils\makesrc.mk1
|
!include n:\python\python-1.4b0b\pc\utils\makesrc.mk1
|
||||||
|
|
|
@ -1,43 +1,43 @@
|
||||||
40
|
40
|
||||||
projectIdent
|
projectIdent
|
||||||
0
|
0
|
||||||
VpeMain
|
VpeMain
|
||||||
1
|
1
|
||||||
WRect
|
WRect
|
||||||
0
|
0
|
||||||
0
|
0
|
||||||
9920
|
9920
|
||||||
8704
|
8704
|
||||||
2
|
2
|
||||||
MProject
|
MProject
|
||||||
3
|
3
|
||||||
MCommand
|
MCommand
|
||||||
0
|
0
|
||||||
4
|
4
|
||||||
MCommand
|
MCommand
|
||||||
0
|
0
|
||||||
1
|
1
|
||||||
5
|
5
|
||||||
WFileName
|
WFileName
|
||||||
11
|
11
|
||||||
makesrc.tgt
|
makesrc.tgt
|
||||||
6
|
6
|
||||||
WVList
|
WVList
|
||||||
1
|
1
|
||||||
7
|
7
|
||||||
VComponent
|
VComponent
|
||||||
8
|
8
|
||||||
WRect
|
WRect
|
||||||
332
|
332
|
||||||
324
|
324
|
||||||
5670
|
5670
|
||||||
4215
|
4215
|
||||||
0
|
0
|
||||||
0
|
0
|
||||||
9
|
9
|
||||||
WFileName
|
WFileName
|
||||||
11
|
11
|
||||||
makesrc.tgt
|
makesrc.tgt
|
||||||
0
|
0
|
||||||
1
|
1
|
||||||
7
|
7
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
[MSVC Status File]
|
[MSVC Status File]
|
||||||
Version=1.00
|
Version=1.00
|
||||||
ProjectType=10
|
ProjectType=10
|
||||||
External=0
|
External=0
|
||||||
BrkptCount=0
|
BrkptCount=0
|
||||||
WatchCount=0
|
WatchCount=0
|
||||||
|
|
|
@ -1,220 +1,220 @@
|
||||||
# Microsoft Visual C++ generated build script - Do not modify
|
# Microsoft Visual C++ generated build script - Do not modify
|
||||||
|
|
||||||
PROJ = PYTH_W31
|
PROJ = PYTH_W31
|
||||||
DEBUG = 0
|
DEBUG = 0
|
||||||
PROGTYPE = 3
|
PROGTYPE = 3
|
||||||
CALLER =
|
CALLER =
|
||||||
ARGS =
|
ARGS =
|
||||||
DLLS =
|
DLLS =
|
||||||
D_RCDEFINES = -d_DEBUG
|
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
|
||||||
CXX = cl
|
CXX = cl
|
||||||
CCREATEPCHFLAG =
|
CCREATEPCHFLAG =
|
||||||
CPPCREATEPCHFLAG =
|
CPPCREATEPCHFLAG =
|
||||||
CUSEPCHFLAG =
|
CUSEPCHFLAG =
|
||||||
CPPUSEPCHFLAG =
|
CPPUSEPCHFLAG =
|
||||||
FIRSTC = MAIN.C
|
FIRSTC = MAIN.C
|
||||||
FIRSTCPP =
|
FIRSTCPP =
|
||||||
RC = rc
|
RC = rc
|
||||||
CFLAGS_D_WTTY = /nologo /G3 /Mq /W3 /Zi /AL /Gt9 /Od /D "_DEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR /Fd"PYTH_W31.PDB"
|
CFLAGS_D_WTTY = /nologo /G3 /Mq /W3 /Zi /AL /Gt9 /Od /D "_DEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR /Fd"PYTH_W31.PDB"
|
||||||
CFLAGS_R_WTTY = /nologo /Gs /G3 /Mq /W3 /AL /Gt9 /O2 /D "NDEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR
|
CFLAGS_R_WTTY = /nologo /Gs /G3 /Mq /W3 /AL /Gt9 /O2 /D "NDEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR
|
||||||
LFLAGS_D_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /CO /MAP
|
LFLAGS_D_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /CO /MAP
|
||||||
LFLAGS_R_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /MAP
|
LFLAGS_R_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /MAP
|
||||||
LIBS_D_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock
|
LIBS_D_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock
|
||||||
LIBS_R_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock
|
LIBS_R_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock
|
||||||
RCFLAGS = /nologo
|
RCFLAGS = /nologo
|
||||||
RESFLAGS = /nologo
|
RESFLAGS = /nologo
|
||||||
RUNFLAGS =
|
RUNFLAGS =
|
||||||
DEFFILE = ..\PYTH_W31.DEF
|
DEFFILE = ..\PYTH_W31.DEF
|
||||||
OBJS_EXT =
|
OBJS_EXT =
|
||||||
LIBS_EXT =
|
LIBS_EXT =
|
||||||
!if "$(DEBUG)" == "1"
|
!if "$(DEBUG)" == "1"
|
||||||
CFLAGS = $(CFLAGS_D_WTTY)
|
CFLAGS = $(CFLAGS_D_WTTY)
|
||||||
LFLAGS = $(LFLAGS_D_WTTY)
|
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
|
||||||
SBRS = MAIN.SBR \
|
SBRS = MAIN.SBR \
|
||||||
GETOPT.SBR \
|
GETOPT.SBR \
|
||||||
SELECTMO.SBR \
|
SELECTMO.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
|
||||||
|
|
||||||
|
|
||||||
all: $(PROJ).EXE $(PROJ).BSC
|
all: $(PROJ).EXE $(PROJ).BSC
|
||||||
|
|
||||||
MAIN.OBJ: ..\SRC\MAIN.C $(MAIN_DEP)
|
MAIN.OBJ: ..\SRC\MAIN.C $(MAIN_DEP)
|
||||||
$(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ..\SRC\MAIN.C
|
$(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ..\SRC\MAIN.C
|
||||||
|
|
||||||
GETOPT.OBJ: ..\SRC\GETOPT.C $(GETOPT_DEP)
|
GETOPT.OBJ: ..\SRC\GETOPT.C $(GETOPT_DEP)
|
||||||
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETOPT.C
|
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETOPT.C
|
||||||
|
|
||||||
SELECTMO.OBJ: ..\SRC\SELECTMO.C $(SELECTMO_DEP)
|
SELECTMO.OBJ: ..\SRC\SELECTMO.C $(SELECTMO_DEP)
|
||||||
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SELECTMO.C
|
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SELECTMO.C
|
||||||
|
|
||||||
SOCKETMO.OBJ: ..\SRC\SOCKETMO.C $(SOCKETMO_DEP)
|
SOCKETMO.OBJ: ..\SRC\SOCKETMO.C $(SOCKETMO_DEP)
|
||||||
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SOCKETMO.C
|
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SOCKETMO.C
|
||||||
|
|
||||||
|
|
||||||
$(PROJ).EXE:: MAIN.OBJ GETOPT.OBJ SELECTMO.OBJ SOCKETMO.OBJ $(OBJS_EXT) $(DEFFILE)
|
$(PROJ).EXE:: MAIN.OBJ GETOPT.OBJ SELECTMO.OBJ SOCKETMO.OBJ $(OBJS_EXT) $(DEFFILE)
|
||||||
echo >NUL @<<$(PROJ).CRF
|
echo >NUL @<<$(PROJ).CRF
|
||||||
MAIN.OBJ +
|
MAIN.OBJ +
|
||||||
GETOPT.OBJ +
|
GETOPT.OBJ +
|
||||||
SELECTMO.OBJ +
|
SELECTMO.OBJ +
|
||||||
SOCKETMO.OBJ +
|
SOCKETMO.OBJ +
|
||||||
$(OBJS_EXT)
|
$(OBJS_EXT)
|
||||||
$(PROJ).EXE
|
$(PROJ).EXE
|
||||||
$(MAPFILE)
|
$(MAPFILE)
|
||||||
c:\msvc\lib\+
|
c:\msvc\lib\+
|
||||||
c:\msvc\mfc\lib\+
|
c:\msvc\mfc\lib\+
|
||||||
$(LIBS)
|
$(LIBS)
|
||||||
$(DEFFILE);
|
$(DEFFILE);
|
||||||
<<
|
<<
|
||||||
link $(LFLAGS) @$(PROJ).CRF
|
link $(LFLAGS) @$(PROJ).CRF
|
||||||
$(RC) $(RESFLAGS) $@
|
$(RC) $(RESFLAGS) $@
|
||||||
|
|
||||||
|
|
||||||
run: $(PROJ).EXE
|
run: $(PROJ).EXE
|
||||||
$(PROJ) $(RUNFLAGS)
|
$(PROJ) $(RUNFLAGS)
|
||||||
|
|
||||||
|
|
||||||
$(PROJ).BSC: $(SBRS)
|
$(PROJ).BSC: $(SBRS)
|
||||||
bscmake @<<
|
bscmake @<<
|
||||||
/o$@ $(SBRS)
|
/o$@ $(SBRS)
|
||||||
<<
|
<<
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[MSVC Status File]
|
[MSVC Status File]
|
||||||
Version=1.00
|
Version=1.00
|
||||||
ProjectType=10
|
ProjectType=10
|
||||||
External=0
|
External=0
|
||||||
BrkptCount=0
|
BrkptCount=0
|
||||||
WatchCount=0
|
WatchCount=0
|
||||||
|
|
22504
PC/vc40.mak
22504
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
File diff suppressed because it is too large
Load diff
|
@ -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
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue