Kaydet (Commit) 950a1260 authored tarafından Guido van Rossum's avatar Guido van Rossum

New versions of almost all files.

üst 2b65444b
......@@ -34,11 +34,13 @@ extern void initaudioop();
extern void initbinascii();
extern void initcmath();
extern void initenvironment();
extern void initerrno();
extern void initimageop();
extern void initmath();
extern void initmd5();
extern void initnew();
extern void initnt();
extern void initoperator();
extern void initregex();
extern void initrgbimg();
extern void initrotor();
......@@ -64,11 +66,13 @@ struct _inittab inittab[] = {
{"binascii", initbinascii},
{"cmath", initcmath},
{"environment", initenvironment},
{"errno", initerrno},
{"imageop", initimageop},
{"math", initmath},
{"md5", initmd5},
{"new", initnew},
{"nt", initnt}, /* Use the NT os functions, not posix */
{"operator", initoperator},
{"regex", initregex},
{"rgbimg", initrgbimg},
{"rotor", initrotor},
......
......@@ -10,6 +10,22 @@ This is a manually maintained version used for the Watcom,
Borland and and Microsoft Visual C++ compilers. It is a
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_PAUSE
#define LONG_BIT 32
#define PREFIX ""
#define EXEC_PREFIX ""
/* 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 MS_WIN32
#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
#define COMPILER "[MSC 32 bit (Intel)]"
#else
#define COMPILER "[MSC (Unknown)]"
#endif
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win"
#define PYTHONPATH ".\\lib;.\\lib\\win"
typedef int pid_t;
#define WORD_BIT 32
#pragma warning(disable:4113)
......@@ -48,7 +74,6 @@ typedef int pid_t;
#define HAVE_STRFTIME
#define NT_THREADS
#define WITH_THREAD
#define _COMPLEX_DEFINED
#ifndef NETSCAPE_PI
#define USE_SOCKET
#endif
......@@ -58,7 +83,8 @@ typedef int pid_t;
#ifdef USE_DL_EXPORT
#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
#endif
#endif /* MS_WIN32 */
#endif /* _MSC_VER && > 850 */
#if defined(_MSC_VER) && _MSC_VER <= 850
/* Start of defines for 16-bit Windows using VC++ 1.5 */
......@@ -67,11 +93,10 @@ typedef int pid_t;
#define MS_WIN16
#define MS_WINDOWS
#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
typedef int pid_t;
#define WORD_BIT 16
#define _COMPLEX_DEFINED
#pragma warning(disable:4113)
#define memcpy memmove /* memcpy dangerous pointer wrap in Win 3.1 */
#define hypot _hypot
......@@ -109,7 +134,7 @@ int sscanf(const char *, const char *, ...);
/* The Watcom compiler defines __WATCOMC__ */
#ifdef __WATCOMC__
#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
#include <ctype.h>
#include <direct.h>
......@@ -144,7 +169,7 @@ typedef int pid_t;
/* The Borland compiler defines __BORLANDC__ */
#ifdef __BORLANDC__
#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 HAVE_CLOCK
#define HAVE_STRFTIME
......@@ -153,6 +178,18 @@ typedef int pid_t;
#endif
#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! */
/* Define if on AIX 3.
......
#! /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_AddModule
PyImport_ImportModule
PyImport_ImportFrozenModule
PyImport_FrozenModules
PyImport_ReloadModule
PyImport_Cleanup
PyInt_FromLong
......
project : n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.exe n:\python\python-1&
.4b0b\pc\wat_dos\pyth_dos.exe .SYMBOLIC
project : n:\python\python-1.4b2\pc\wat_os2\pyth_os2.exe n:\python\python-1.&
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.4b0b\pc\wat_dos\pyth_dos.mk1
!include n:\python\python-1.4b2\pc\wat_os2\pyth_os2.mk1
!include n:\python\python-1.4b2\pc\wat_dos\pyth_dos.mk1
......@@ -36,28 +36,28 @@ WRect
256
5632
4096
1
0
0
10
WFileName
20
wat_os2\pyth_os2.tgt
0
0
12
74
11
VComponent
12
WRect
0
0
128
85
5632
4147
4113
0
0
13
WFileName
20
wat_dos\pyth_dos.tgt
0
0
9
9
11
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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
This diff is collapsed.
......@@ -15,7 +15,7 @@ WString
dr2en
1
0
1
0
4
MCommand
0
......@@ -74,7 +74,7 @@ WVList
0
18
WPickList
75
77
19
MItem
3
......@@ -321,8 +321,8 @@ WVList
0
77
MItem
23
..\..\modules\getpath.c
27
..\..\modules\errnomodule.c
78
WString
4
......@@ -340,7 +340,7 @@ WVList
81
MItem
23
..\..\modules\imageop.c
..\..\modules\getpath.c
82
WString
4
......@@ -357,8 +357,8 @@ WVList
0
85
MItem
20
..\..\modules\main.c
23
..\..\modules\imageop.c
86
WString
4
......@@ -375,8 +375,8 @@ WVList
0
89
MItem
26
..\..\modules\mathmodule.c
20
..\..\modules\main.c
90
WString
4
......@@ -393,8 +393,8 @@ WVList
0
93
MItem
20
..\..\modules\md5c.c
26
..\..\modules\mathmodule.c
94
WString
4
......@@ -411,8 +411,8 @@ WVList
0
97
MItem
25
..\..\modules\md5module.c
20
..\..\modules\md5c.c
98
WString
4
......@@ -430,7 +430,7 @@ WVList
101
MItem
25
..\..\modules\newmodule.c
..\..\modules\md5module.c
102
WString
4
......@@ -447,8 +447,8 @@ WVList
0
105
MItem
27
..\..\modules\regexmodule.c
25
..\..\modules\newmodule.c
106
WString
4
......@@ -465,8 +465,8 @@ WVList
0
109
MItem
23
..\..\modules\regexpr.c
24
..\..\modules\operator.c
110
WString
4
......@@ -483,8 +483,8 @@ WVList
0
113
MItem
28
..\..\modules\rgbimgmodule.c
27
..\..\modules\posixmodule.c
114
WString
4
......@@ -502,7 +502,7 @@ WVList
117
MItem
27
..\..\modules\rotormodule.c
..\..\modules\regexmodule.c
118
WString
4
......@@ -519,8 +519,8 @@ WVList
0
121
MItem
28
..\..\modules\signalmodule.c
23
..\..\modules\regexpr.c
122
WString
4
......@@ -537,8 +537,8 @@ WVList
0
125
MItem
23
..\..\modules\soundex.c
28
..\..\modules\rgbimgmodule.c
126
WString
4
......@@ -556,7 +556,7 @@ WVList
129
MItem
27
..\..\modules\stropmodule.c
..\..\modules\rotormodule.c
130
WString
4
......@@ -574,7 +574,7 @@ WVList
133
MItem
28
..\..\modules\structmodule.c
..\..\modules\signalmodule.c
134
WString
4
......@@ -591,8 +591,8 @@ WVList
0
137
MItem
26
..\..\modules\timemodule.c
23
..\..\modules\soundex.c
138
WString
4
......@@ -609,8 +609,8 @@ WVList
0
141
MItem
26
..\..\modules\yuvconvert.c
27
..\..\modules\stropmodule.c
142
WString
4
......@@ -627,8 +627,8 @@ WVList
0
145
MItem
24
..\..\objects\abstract.c
28
..\..\modules\structmodule.c
146
WString
4
......@@ -645,8 +645,8 @@ WVList
0
149
MItem
28
..\..\objects\accessobject.c
26
..\..\modules\timemodule.c
150
WString
4
......@@ -663,8 +663,8 @@ WVList
0
153
MItem
27
..\..\objects\classobject.c
26
..\..\modules\yuvconvert.c
154
WString
4
......@@ -681,8 +681,8 @@ WVList
0
157
MItem
23
..\..\objects\cobject.c
24
..\..\objects\abstract.c
158
WString
4
......@@ -699,8 +699,8 @@ WVList
0
161
MItem
29
..\..\objects\complexobject.c
28
..\..\objects\accessobject.c
162
WString
4
......@@ -717,8 +717,8 @@ WVList
0
165
MItem
26
..\..\objects\fileobject.c
27
..\..\objects\classobject.c
166
WString
4
......@@ -735,8 +735,8 @@ WVList
0
169
MItem
27
..\..\objects\floatobject.c
23
..\..\objects\cobject.c
170
WString
4
......@@ -753,8 +753,8 @@ WVList
0
173
MItem
27
..\..\objects\frameobject.c
29
..\..\objects\complexobject.c
174
WString
4
......@@ -772,7 +772,7 @@ WVList
177
MItem
26
..\..\objects\funcobject.c
..\..\objects\fileobject.c
178
WString
4
......@@ -789,8 +789,8 @@ WVList
0
181
MItem
25
..\..\objects\intobject.c
27
..\..\objects\floatobject.c
182
WString
4
......@@ -807,8 +807,8 @@ WVList
0
185
MItem
26
..\..\objects\listobject.c
27
..\..\objects\frameobject.c
186
WString
4
......@@ -826,7 +826,7 @@ WVList
189
MItem
26
..\..\objects\longobject.c
..\..\objects\funcobject.c
190
WString
4
......@@ -843,8 +843,8 @@ WVList
0
193
MItem
29
..\..\objects\mappingobject.c
25
..\..\objects\intobject.c
194
WString
4
......@@ -861,8 +861,8 @@ WVList
0
197
MItem
28
..\..\objects\methodobject.c
26
..\..\objects\listobject.c
198
WString
4
......@@ -879,8 +879,8 @@ WVList
0
201
MItem
28
..\..\objects\moduleobject.c
26
..\..\objects\longobject.c
202
WString
4
......@@ -897,8 +897,8 @@ WVList
0
205
MItem
22
..\..\objects\object.c
29
..\..\objects\mappingobject.c
206
WString
4
......@@ -915,8 +915,8 @@ WVList
0
209
MItem
27
..\..\objects\rangeobject.c
28
..\..\objects\methodobject.c
210
WString
4
......@@ -934,7 +934,7 @@ WVList
213
MItem
28
..\..\objects\stringobject.c
..\..\objects\moduleobject.c
214
WString
4
......@@ -951,8 +951,8 @@ WVList
0
217
MItem
27
..\..\objects\tupleobject.c
22
..\..\objects\object.c
218
WString
4
......@@ -969,8 +969,8 @@ WVList
0
221
MItem
26
..\..\objects\typeobject.c
27
..\..\objects\rangeobject.c
222
WString
4
......@@ -987,8 +987,8 @@ WVList
0
225
MItem
22
..\..\parser\acceler.c
28
..\..\objects\stringobject.c
226
WString
4
......@@ -1005,8 +1005,8 @@ WVList
0
229
MItem
23
..\..\parser\grammar1.c
27
..\..\objects\tupleobject.c
230
WString
4
......@@ -1023,8 +1023,8 @@ WVList
0
233
MItem
25
..\..\parser\myreadline.c
26
..\..\objects\typeobject.c
234
WString
4
......@@ -1041,8 +1041,8 @@ WVList
0
237
MItem
19
..\..\parser\node.c
22
..\..\parser\acceler.c
238
WString
4
......@@ -1059,8 +1059,8 @@ WVList
0
241
MItem
21
..\..\parser\parser.c
23
..\..\parser\grammar1.c
242
WString
4
......@@ -1077,8 +1077,8 @@ WVList
0
245
MItem
23
..\..\parser\parsetok.c
25
..\..\parser\myreadline.c
246
WString
4
......@@ -1095,8 +1095,8 @@ WVList
0
249
MItem
24
..\..\parser\tokenizer.c
19
..\..\parser\node.c
250
WString
4
......@@ -1113,8 +1113,8 @@ WVList
0
253
MItem
26
..\..\python\bltinmodule.c
21
..\..\parser\parser.c
254
WString
4
......@@ -1131,8 +1131,8 @@ WVList
0
257
MItem
20
..\..\python\ceval.c
23
..\..\parser\parsetok.c
258
WString
4
......@@ -1149,8 +1149,8 @@ WVList
0
261
MItem
26
..\..\python\cgensupport.c
24
..\..\parser\tokenizer.c
262
WString
4
......@@ -1167,8 +1167,8 @@ WVList
0
265
MItem
22
..\..\python\compile.c
26
..\..\python\bltinmodule.c
266
WString
4
......@@ -1185,8 +1185,8 @@ WVList
0
269
MItem
21
..\..\python\errors.c
20
..\..\python\ceval.c
270
WString
4
......@@ -1203,8 +1203,8 @@ WVList
0
273
MItem
21
..\..\python\frozen.c
26
..\..\python\cgensupport.c
274
WString
4
......@@ -1222,7 +1222,7 @@ WVList
277
MItem
22
..\..\python\getargs.c
..\..\python\compile.c
278
WString
4
......@@ -1239,8 +1239,8 @@ WVList
0
281
MItem
26
..\..\python\getcompiler.c
21
..\..\python\errors.c
282
WString
4
......@@ -1257,8 +1257,8 @@ WVList
0
285
MItem
27
..\..\python\getcopyright.c
21
..\..\python\frozen.c
286
WString
4
......@@ -1275,8 +1275,8 @@ WVList
0
289
MItem
23
..\..\python\getmtime.c
22
..\..\python\getargs.c
290
WString
4
......@@ -1293,8 +1293,8 @@ WVList
0
293
MItem
21
..\..\python\getopt.c
26
..\..\python\getcompiler.c
294
WString
4
......@@ -1311,8 +1311,8 @@ WVList
0
297
MItem
26
..\..\python\getplatform.c
27
..\..\python\getcopyright.c
298
WString
4
......@@ -1329,8 +1329,8 @@ WVList
0
301
MItem
25
..\..\python\getversion.c
23
..\..\python\getmtime.c
302
WString
4
......@@ -1347,8 +1347,8 @@ WVList
0
305
MItem
23
..\..\python\graminit.c
21
..\..\python\getopt.c
306
WString
4
......@@ -1365,8 +1365,8 @@ WVList
0
309
MItem
21
..\..\python\import.c
26
..\..\python\getplatform.c
310
WString
4
......@@ -1383,8 +1383,8 @@ WVList
0
313
MItem
23
..\..\python\importdl.c
25
..\..\python\getversion.c
314
WString
4
......@@ -1401,8 +1401,8 @@ WVList
0
317
MItem
22
..\..\python\marshal.c
23
..\..\python\graminit.c
318
WString
4
......@@ -1419,8 +1419,8 @@ WVList
0
321
MItem
25
..\..\python\modsupport.c
21
..\..\python\import.c
322
WString
4
......@@ -1437,8 +1437,8 @@ WVList
0
325
MItem
24
..\..\python\mystrtoul.c
23
..\..\python\importdl.c
326
WString
4
......@@ -1455,8 +1455,8 @@ WVList
0
329
MItem
24
..\..\python\pythonrun.c
22
..\..\python\marshal.c
330
WString
4
......@@ -1473,8 +1473,8 @@ WVList
0
333
MItem
27
..\..\python\structmember.c
25
..\..\python\modsupport.c
334
WString
4
......@@ -1492,7 +1492,7 @@ WVList
337
MItem
24
..\..\python\sysmodule.c
..\..\python\mystrtoul.c
338
WString
4
......@@ -1510,7 +1510,7 @@ WVList
341
MItem
24
..\..\python\traceback.c
..\..\python\pythonrun.c
342
WString
4
......@@ -1527,8 +1527,8 @@ WVList
0
345
MItem
11
..\config.c
27
..\..\python\structmember.c
346
WString
4
......@@ -1545,8 +1545,8 @@ WVList
0
349
MItem
16
..\posixmodule.c
24
..\..\python\sysmodule.c
350
WString
4
......@@ -1561,3 +1561,39 @@ WVList
1
1
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
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
This diff is collapsed.
......@@ -58,7 +58,7 @@ WVList
0
14
WPickList
75
77
15
MItem
3
......@@ -237,8 +237,8 @@ WVList
0
56
MItem
23
..\..\modules\getpath.c
27
..\..\modules\errnomodule.c
57
WString
4
......@@ -256,7 +256,7 @@ WVList
60
MItem
23
..\..\modules\imageop.c
..\..\modules\getpath.c
61
WString
4
......@@ -273,8 +273,8 @@ WVList
0
64
MItem
20
..\..\modules\main.c
23
..\..\modules\imageop.c
65
WString
4
......@@ -291,8 +291,8 @@ WVList
0
68
MItem
26
..\..\modules\mathmodule.c
20
..\..\modules\main.c
69
WString
4
......@@ -309,8 +309,8 @@ WVList
0
72
MItem
20
..\..\modules\md5c.c
26
..\..\modules\mathmodule.c
73
WString
4
......@@ -327,8 +327,8 @@ WVList
0
76
MItem
25
..\..\modules\md5module.c
20
..\..\modules\md5c.c
77
WString
4
......@@ -346,7 +346,7 @@ WVList
80
MItem
25
..\..\modules\newmodule.c
..\..\modules\md5module.c
81
WString
4
......@@ -363,8 +363,8 @@ WVList
0
84
MItem
27
..\..\modules\regexmodule.c
25
..\..\modules\newmodule.c
85
WString
4
......@@ -381,8 +381,8 @@ WVList
0
88
MItem
23
..\..\modules\regexpr.c
24
..\..\modules\operator.c
89
WString
4
......@@ -399,8 +399,8 @@ WVList
0
92
MItem
28
..\..\modules\rgbimgmodule.c
27
..\..\modules\posixmodule.c
93
WString
4
......@@ -418,7 +418,7 @@ WVList
96
MItem
27
..\..\modules\rotormodule.c
..\..\modules\regexmodule.c
97
WString
4
......@@ -435,8 +435,8 @@ WVList
0
100
MItem
28
..\..\modules\signalmodule.c
23
..\..\modules\regexpr.c
101
WString
4
......@@ -453,8 +453,8 @@ WVList
0
104
MItem
23
..\..\modules\soundex.c
28
..\..\modules\rgbimgmodule.c
105
WString
4
......@@ -472,7 +472,7 @@ WVList
108
MItem
27
..\..\modules\stropmodule.c
..\..\modules\rotormodule.c
109
WString
4
......@@ -490,7 +490,7 @@ WVList
112
MItem
28
..\..\modules\structmodule.c
..\..\modules\signalmodule.c
113
WString
4
......@@ -507,8 +507,8 @@ WVList
0
116
MItem
26
..\..\modules\timemodule.c
23
..\..\modules\soundex.c
117
WString
4
......@@ -525,8 +525,8 @@ WVList
0
120
MItem
26
..\..\modules\yuvconvert.c
27
..\..\modules\stropmodule.c
121
WString
4
......@@ -543,8 +543,8 @@ WVList
0
124
MItem
24
..\..\objects\abstract.c
28
..\..\modules\structmodule.c
125
WString
4
......@@ -561,8 +561,8 @@ WVList
0
128
MItem
28
..\..\objects\accessobject.c
26
..\..\modules\timemodule.c
129
WString
4
......@@ -579,8 +579,8 @@ WVList
0
132
MItem
27
..\..\objects\classobject.c
26
..\..\modules\yuvconvert.c
133
WString
4
......@@ -597,8 +597,8 @@ WVList
0
136
MItem
23
..\..\objects\cobject.c
24
..\..\objects\abstract.c
137
WString
4
......@@ -615,8 +615,8 @@ WVList
0
140
MItem
29
..\..\objects\complexobject.c
28
..\..\objects\accessobject.c
141
WString
4
......@@ -633,8 +633,8 @@ WVList
0
144
MItem
26
..\..\objects\fileobject.c
27
..\..\objects\classobject.c
145
WString
4
......@@ -651,8 +651,8 @@ WVList
0
148
MItem
27
..\..\objects\floatobject.c
23
..\..\objects\cobject.c
149
WString
4
......@@ -669,8 +669,8 @@ WVList
0
152
MItem
27
..\..\objects\frameobject.c
29
..\..\objects\complexobject.c
153
WString
4
......@@ -688,7 +688,7 @@ WVList
156
MItem
26
..\..\objects\funcobject.c
..\..\objects\fileobject.c
157
WString
4
......@@ -705,8 +705,8 @@ WVList
0
160
MItem
25
..\..\objects\intobject.c
27
..\..\objects\floatobject.c
161
WString
4
......@@ -723,8 +723,8 @@ WVList
0
164
MItem
26
..\..\objects\listobject.c
27
..\..\objects\frameobject.c
165
WString
4
......@@ -742,7 +742,7 @@ WVList
168
MItem
26
..\..\objects\longobject.c
..\..\objects\funcobject.c
169
WString
4
......@@ -759,8 +759,8 @@ WVList
0
172
MItem
29
..\..\objects\mappingobject.c
25
..\..\objects\intobject.c
173
WString
4
......@@ -777,8 +777,8 @@ WVList
0
176
MItem
28
..\..\objects\methodobject.c
26
..\..\objects\listobject.c
177
WString
4
......@@ -795,8 +795,8 @@ WVList
0
180
MItem
28
..\..\objects\moduleobject.c
26
..\..\objects\longobject.c
181
WString
4
......@@ -813,8 +813,8 @@ WVList
0
184
MItem
22
..\..\objects\object.c
29
..\..\objects\mappingobject.c
185
WString
4
......@@ -831,8 +831,8 @@ WVList
0
188
MItem
27
..\..\objects\rangeobject.c
28
..\..\objects\methodobject.c
189
WString
4
......@@ -850,7 +850,7 @@ WVList
192
MItem
28
..\..\objects\stringobject.c
..\..\objects\moduleobject.c
193
WString
4
......@@ -867,8 +867,8 @@ WVList
0
196
MItem
27
..\..\objects\tupleobject.c
22
..\..\objects\object.c
197
WString
4
......@@ -885,8 +885,8 @@ WVList
0
200
MItem
26
..\..\objects\typeobject.c
27
..\..\objects\rangeobject.c
201
WString
4
......@@ -903,8 +903,8 @@ WVList
0
204
MItem
22
..\..\parser\acceler.c
28
..\..\objects\stringobject.c
205
WString
4
......@@ -921,8 +921,8 @@ WVList
0
208
MItem
23
..\..\parser\grammar1.c
27
..\..\objects\tupleobject.c
209
WString
4
......@@ -939,8 +939,8 @@ WVList
0
212
MItem
25
..\..\parser\myreadline.c
26
..\..\objects\typeobject.c
213
WString
4
......@@ -957,8 +957,8 @@ WVList
0
216
MItem
19
..\..\parser\node.c
22
..\..\parser\acceler.c
217
WString
4
......@@ -975,8 +975,8 @@ WVList
0
220
MItem
21
..\..\parser\parser.c
23
..\..\parser\grammar1.c
221
WString
4
......@@ -993,8 +993,8 @@ WVList
0
224
MItem
23
..\..\parser\parsetok.c
25
..\..\parser\myreadline.c
225
WString
4
......@@ -1011,8 +1011,8 @@ WVList
0
228
MItem
24
..\..\parser\tokenizer.c
19
..\..\parser\node.c
229
WString
4
......@@ -1029,8 +1029,8 @@ WVList
0
232
MItem
26
..\..\python\bltinmodule.c
21
..\..\parser\parser.c
233
WString
4
......@@ -1047,8 +1047,8 @@ WVList
0
236
MItem
20
..\..\python\ceval.c
23
..\..\parser\parsetok.c
237
WString
4
......@@ -1065,8 +1065,8 @@ WVList
0
240
MItem
26
..\..\python\cgensupport.c
24
..\..\parser\tokenizer.c
241
WString
4
......@@ -1083,8 +1083,8 @@ WVList
0
244
MItem
22
..\..\python\compile.c
26
..\..\python\bltinmodule.c
245
WString
4
......@@ -1101,8 +1101,8 @@ WVList
0
248
MItem
21
..\..\python\errors.c
20
..\..\python\ceval.c
249
WString
4
......@@ -1119,8 +1119,8 @@ WVList
0
252
MItem
21
..\..\python\frozen.c
26
..\..\python\cgensupport.c
253
WString
4
......@@ -1138,7 +1138,7 @@ WVList
256
MItem
22
..\..\python\getargs.c
..\..\python\compile.c
257
WString
4
......@@ -1155,8 +1155,8 @@ WVList
0
260
MItem
26
..\..\python\getcompiler.c
21
..\..\python\errors.c
261
WString
4
......@@ -1173,8 +1173,8 @@ WVList
0
264
MItem
27
..\..\python\getcopyright.c
21
..\..\python\frozen.c
265
WString
4
......@@ -1191,8 +1191,8 @@ WVList
0
268
MItem
23
..\..\python\getmtime.c
22
..\..\python\getargs.c
269
WString
4
......@@ -1209,8 +1209,8 @@ WVList
0
272
MItem
21
..\..\python\getopt.c
26
..\..\python\getcompiler.c
273
WString
4
......@@ -1227,8 +1227,8 @@ WVList
0
276
MItem
26
..\..\python\getplatform.c
27
..\..\python\getcopyright.c
277
WString
4
......@@ -1245,8 +1245,8 @@ WVList
0
280
MItem
25
..\..\python\getversion.c
23
..\..\python\getmtime.c
281
WString
4
......@@ -1263,8 +1263,8 @@ WVList
0
284
MItem
23
..\..\python\graminit.c
21
..\..\python\getopt.c
285
WString
4
......@@ -1281,8 +1281,8 @@ WVList
0
288
MItem
21
..\..\python\import.c
26
..\..\python\getplatform.c
289
WString
4
......@@ -1299,8 +1299,8 @@ WVList
0
292
MItem
23
..\..\python\importdl.c
25
..\..\python\getversion.c
293
WString
4
......@@ -1317,8 +1317,8 @@ WVList
0
296
MItem
22
..\..\python\marshal.c
23
..\..\python\graminit.c
297
WString
4
......@@ -1335,8 +1335,8 @@ WVList
0
300
MItem
25
..\..\python\modsupport.c
21
..\..\python\import.c
301
WString
4
......@@ -1353,8 +1353,8 @@ WVList
0
304
MItem
24
..\..\python\mystrtoul.c
23
..\..\python\importdl.c
305
WString
4
......@@ -1371,8 +1371,8 @@ WVList
0
308
MItem
24
..\..\python\pythonrun.c
22
..\..\python\marshal.c
309
WString
4
......@@ -1389,8 +1389,8 @@ WVList
0
312
MItem
27
..\..\python\structmember.c
25
..\..\python\modsupport.c
313
WString
4
......@@ -1408,7 +1408,7 @@ WVList
316
MItem
24
..\..\python\sysmodule.c
..\..\python\mystrtoul.c
317
WString
4
......@@ -1426,7 +1426,7 @@ WVList
320
MItem
24
..\..\python\traceback.c
..\..\python\pythonrun.c
321
WString
4
......@@ -1443,8 +1443,8 @@ WVList
0
324
MItem
11
..\config.c
27
..\..\python\structmember.c
325
WString
4
......@@ -1461,8 +1461,8 @@ WVList
0
328
MItem
16
..\posixmodule.c
24
..\..\python\sysmodule.c
329
WString
4
......@@ -1477,3 +1477,39 @@ WVList
1
1
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment