mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00

svn+ssh://pythondev@svn.python.org/python/trunk ........ r62194 | jeffrey.yasskin | 2008-04-07 01:04:28 +0200 (Mon, 07 Apr 2008) | 7 lines Add enough debugging information to diagnose failures where the HandlerBException is ignored, and fix one such problem, where it was thrown during the __del__ method of the previous Popen object. We may want to find a better way of printing verbose information so it's not spammy when the test passes. ........ r62197 | mark.hammond | 2008-04-07 03:53:39 +0200 (Mon, 07 Apr 2008) | 2 lines Issue #2513: enable 64bit cross compilation on windows. ........ r62198 | mark.hammond | 2008-04-07 03:59:40 +0200 (Mon, 07 Apr 2008) | 2 lines correct heading underline for new "Cross-compiling on Windows" section ........ r62204 | gregory.p.smith | 2008-04-07 08:33:21 +0200 (Mon, 07 Apr 2008) | 4 lines Use the new PyFile_IncUseCount & PyFile_DecUseCount calls appropriatly within the standard library. These modules use PyFile_AsFile and later release the GIL while operating on the previously returned FILE*. ........ r62205 | mark.summerfield | 2008-04-07 09:39:23 +0200 (Mon, 07 Apr 2008) | 4 lines changed "2500 components" to "several thousand" since the number keeps growning:-) ........ r62214 | georg.brandl | 2008-04-07 20:51:59 +0200 (Mon, 07 Apr 2008) | 2 lines #2525: update timezone info examples in the docs. ........ r62219 | andrew.kuchling | 2008-04-08 01:57:07 +0200 (Tue, 08 Apr 2008) | 1 line Write PEP 3127 section; add items ........ r62220 | andrew.kuchling | 2008-04-08 01:57:21 +0200 (Tue, 08 Apr 2008) | 1 line Typo fix ........ r62221 | andrew.kuchling | 2008-04-08 03:33:10 +0200 (Tue, 08 Apr 2008) | 1 line Typographical fix: 32bit -> 32-bit, 64bit -> 64-bit ........ r62227 | andrew.kuchling | 2008-04-08 23:22:53 +0200 (Tue, 08 Apr 2008) | 1 line Add items ........ r62229 | amaury.forgeotdarc | 2008-04-08 23:27:42 +0200 (Tue, 08 Apr 2008) | 7 lines Issue2564: Prevent a hang in "import test.autotest", which runs the entire test suite as a side-effect of importing the module. - in test_capi, a thread tried to import other modules - re.compile() imported sre_parse again on every call. ........ r62230 | amaury.forgeotdarc | 2008-04-08 23:51:57 +0200 (Tue, 08 Apr 2008) | 2 lines Prevent an error when inspect.isabstract() is called with something else than a new-style class. ........ r62231 | amaury.forgeotdarc | 2008-04-09 00:07:05 +0200 (Wed, 09 Apr 2008) | 8 lines Issue 2408: remove the _types module It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType), when they can easily be obtained with python code. These expressions even work with Jython. I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 ) at least this change makes it simpler. ........ r62233 | amaury.forgeotdarc | 2008-04-09 01:10:07 +0200 (Wed, 09 Apr 2008) | 2 lines Add a NEWS entry for previous checkin ........ r62234 | trent.nelson | 2008-04-09 01:47:30 +0200 (Wed, 09 Apr 2008) | 37 lines - Issue #2550: The approach used by client/server code for obtaining ports to listen on in network-oriented tests has been refined in an effort to facilitate running multiple instances of the entire regression test suite in parallel without issue. test_support.bind_port() has been fixed such that it will always return a unique port -- which wasn't always the case with the previous implementation, especially if socket options had been set that affected address reuse (i.e. SO_REUSEADDR, SO_REUSEPORT). The new implementation of bind_port() will actually raise an exception if it is passed an AF_INET/SOCK_STREAM socket with either the SO_REUSEADDR or SO_REUSEPORT socket option set. Furthermore, if available, bind_port() will set the SO_EXCLUSIVEADDRUSE option on the socket it's been passed. This currently only applies to Windows. This option prevents any other sockets from binding to the host/port we've bound to, thus removing the possibility of the 'non-deterministic' behaviour, as Microsoft puts it, that occurs when a second SOCK_STREAM socket binds and accepts to a host/port that's already been bound by another socket. The optional preferred port parameter to bind_port() has been removed. Under no circumstances should tests be hard coding ports! test_support.find_unused_port() has also been introduced, which will pass a temporary socket object to bind_port() in order to obtain an unused port. The temporary socket object is then closed and deleted, and the port is returned. This method should only be used for obtaining an unused port in order to pass to an external program (i.e. the -accept [port] argument to openssl's s_server mode) or as a parameter to a server-oriented class that doesn't give you direct access to the underlying socket used. Finally, test_support.HOST has been introduced, which should be used for the host argument of any relevant socket calls (i.e. bind and connect). The following tests were updated to following the new conventions: test_socket, test_smtplib, test_asyncore, test_ssl, test_httplib, test_poplib, test_ftplib, test_telnetlib, test_socketserver, test_asynchat and test_socket_ssl. It is now possible for multiple instances of the regression test suite to run in parallel without issue. ........ r62235 | gregory.p.smith | 2008-04-09 02:25:17 +0200 (Wed, 09 Apr 2008) | 3 lines Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive. It tried to allocate negative or zero memory. That fails. ........ r62237 | trent.nelson | 2008-04-09 02:34:53 +0200 (Wed, 09 Apr 2008) | 1 line Fix typo with regards to self.PORT shadowing class variables with the same name. ........ r62238 | andrew.kuchling | 2008-04-09 03:08:32 +0200 (Wed, 09 Apr 2008) | 1 line Add items ........ r62239 | jerry.seutter | 2008-04-09 07:07:58 +0200 (Wed, 09 Apr 2008) | 1 line Changed test so it no longer runs as a side effect of importing. ........
733 lines
16 KiB
Text
733 lines
16 KiB
Text
# Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4>
|
|
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
# ** DO NOT EDIT **
|
|
|
|
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
|
|
|
CFG=pythoncore - Win32 Release
|
|
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
!MESSAGE use the Export Makefile command and run
|
|
!MESSAGE
|
|
!MESSAGE NMAKE /f "pythoncore.mak".
|
|
!MESSAGE
|
|
!MESSAGE You can specify a configuration when running NMAKE
|
|
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
!MESSAGE
|
|
!MESSAGE NMAKE /f "pythoncore.mak" CFG="pythoncore - Win32 Release"
|
|
!MESSAGE
|
|
!MESSAGE Possible choices for configuration are:
|
|
!MESSAGE
|
|
!MESSAGE "pythoncore - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
|
!MESSAGE "pythoncore - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
|
!MESSAGE
|
|
|
|
# Begin Project
|
|
# PROP AllowPerConfigDependencies 0
|
|
# PROP Scc_ProjName "pythoncore"
|
|
# PROP Scc_LocalPath ".."
|
|
CPP=cl.exe
|
|
MTL=midl.exe
|
|
RSC=rc.exe
|
|
|
|
!IF "$(CFG)" == "pythoncore - Win32 Release"
|
|
|
|
# PROP BASE Use_MFC 0
|
|
# PROP BASE Use_Debug_Libraries 0
|
|
# PROP BASE Output_Dir "Release"
|
|
# PROP BASE Intermediate_Dir "Release"
|
|
# PROP BASE Target_Dir ""
|
|
# PROP Use_MFC 0
|
|
# PROP Use_Debug_Libraries 0
|
|
# PROP Output_Dir "."
|
|
# PROP Intermediate_Dir "x86-temp-release\pythoncore"
|
|
# PROP Ignore_Export_Lib 0
|
|
# PROP Target_Dir ""
|
|
F90=df.exe
|
|
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
|
|
# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /Zm200 /c
|
|
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL"
|
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL"
|
|
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
# ADD RSC /l 0x409 /i "..\..\Include" /d "NDEBUG"
|
|
BSC32=bscmake.exe
|
|
# ADD BASE BSC32 /nologo
|
|
# ADD BSC32 /nologo
|
|
LINK32=link.exe
|
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
|
|
# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python30.dll"
|
|
# SUBTRACT LINK32 /pdb:none
|
|
|
|
!ELSEIF "$(CFG)" == "pythoncore - Win32 Debug"
|
|
|
|
# PROP BASE Use_MFC 0
|
|
# PROP BASE Use_Debug_Libraries 1
|
|
# PROP BASE Output_Dir "Debug"
|
|
# PROP BASE Intermediate_Dir "Debug"
|
|
# PROP BASE Target_Dir ""
|
|
# PROP Use_MFC 0
|
|
# PROP Use_Debug_Libraries 1
|
|
# PROP Output_Dir "."
|
|
# PROP Intermediate_Dir "x86-temp-debug\pythoncore"
|
|
# PROP Ignore_Export_Lib 0
|
|
# PROP Target_Dir ""
|
|
F90=df.exe
|
|
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
|
|
# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /Zm200 /c
|
|
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL"
|
|
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL"
|
|
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG"
|
|
BSC32=bscmake.exe
|
|
# ADD BASE BSC32 /nologo
|
|
# ADD BSC32 /nologo
|
|
LINK32=link.exe
|
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
|
|
# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python30_d.dll" /pdbtype:sept
|
|
# SUBTRACT LINK32 /pdb:none
|
|
|
|
!ENDIF
|
|
|
|
# Begin Target
|
|
|
|
# Name "pythoncore - Win32 Release"
|
|
# Name "pythoncore - Win32 Debug"
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_bisectmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cjkcodecs\_codecs_cn.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cjkcodecs\_codecs_hk.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cjkcodecs\_codecs_iso2022.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cjkcodecs\_codecs_jp.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cjkcodecs\_codecs_kr.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cjkcodecs\_codecs_tw.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_codecsmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_collectionsmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_csv.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_fileio.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_functoolsmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_heapqmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_localemodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_lsprof.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_randommodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_sre.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_struct.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\PC\_subprocess.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_weakref.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\_winreg.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\abstract.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\acceler.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\adler32.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\arraymodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\asdl.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\ast.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\atexitmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\audioop.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\binascii.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\bitset.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\bltinmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\boolobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\bytes_methods.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\bytesobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\cellobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\ceval.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\classobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cmathmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\cobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\codecs.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\codeobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\_collectionsmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\compile.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\complexobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\compress.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\config.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\crc32.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cStringIO.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\datetimemodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\deflate.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\gzio.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\infback.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\descrobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\dictobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\dl_nt.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\dynload_win.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\enumobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\errnomodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\errors.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\exceptions.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\fileobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\firstsets.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\floatobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\formatter_string.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\formatter_unicode.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\frameobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\formatter_unicode.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\frozen.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\funcobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\future.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\gcmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\genobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\getargs.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\getbuildinfo.c
|
|
# ADD CPP /D BUILD=46
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\getcompiler.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\getcopyright.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\getmtime.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\getopt.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\getpathp.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\getplatform.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\getversion.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\graminit.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\grammar.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\grammar1.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\import.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\import_nt.c
|
|
# ADD CPP /I "..\..\Python"
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\importdl.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\inffast.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\inflate.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\inftrees.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\iterobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\itertoolsmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\listnode.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\listobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\longobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\main.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\marshal.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\mathmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\md5module.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\metagrammar.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\memoryobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\methodobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\mmapmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\modsupport.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\moduleobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\msvcrtmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\cjkcodecs\multibytecodec.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\myreadline.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\mysnprintf.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\mystrtoul.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\node.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\object.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\obmalloc.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\operator.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\parser.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\parsermodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\parsetok.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\peephole.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\posixmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\pyarena.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\pyfpe.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\pystate.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\pystrcmp.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\pystrtod.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE="..\..\Python\Python-ast.c"
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\python_nt.rc
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\pythonrun.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\rangeobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\rotatingtree.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\setobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\sha256module.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\sha512module.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\sha1module.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\signalmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\sliceobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\stringobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\structmember.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\structseq.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\symtable.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\symtablemodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\sysmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\thread.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\threadmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\timemodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Parser\tokenizer.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Python\traceback.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\trees.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\uncompr.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\tupleobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\typeobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\unicodectype.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\unicodeobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Objects\weakrefobject.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\xxsubtype.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\yuvconvert.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zipimport.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlibmodule.c
|
|
# End Source File
|
|
# Begin Source File
|
|
|
|
SOURCE=..\..\Modules\zlib\zutil.c
|
|
# End Source File
|
|
# End Target
|
|
# End Project
|