diff options
author | Thomas Heller <theller@ctypes.org> | 2004-06-02 18:58:55 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2004-06-02 18:58:55 (GMT) |
commit | 9f5f056d7547cd4d8347eb4c4a309eea5397f164 (patch) | |
tree | b76881829b59366525a0536be0a7176aad69ad03 | |
parent | 118f931d07de3987958eee51e97b3323c190dbfd (diff) | |
download | cpython-9f5f056d7547cd4d8347eb4c4a309eea5397f164.zip cpython-9f5f056d7547cd4d8347eb4c4a309eea5397f164.tar.gz cpython-9f5f056d7547cd4d8347eb4c4a309eea5397f164.tar.bz2 |
Remove the pcre module.
-rw-r--r-- | PC/VC6/pythoncore.dsp | 8 | ||||
-rw-r--r-- | PC/config.c | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcproj | 38 |
3 files changed, 0 insertions, 48 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index dc4acd4..84737e8 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -555,10 +555,6 @@ SOURCE=..\..\Parser\parsetok.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\pcremodule.c
-# End Source File
-# Begin Source File
-
SOURCE=..\..\Modules\posixmodule.c
# End Source File
# Begin Source File
@@ -567,10 +563,6 @@ SOURCE=..\..\Python\pyfpe.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\pypcre.c
-# End Source File
-# Begin Source File
-
SOURCE=..\..\Python\pystate.c
# End Source File
# Begin Source File
diff --git a/PC/config.c b/PC/config.c index 1b8ddf1..152199f 100644 --- a/PC/config.c +++ b/PC/config.c @@ -33,7 +33,6 @@ extern void inittime(void); extern void initthread(void); extern void initcStringIO(void); extern void initcPickle(void); -extern void initpcre(void); #ifdef WIN32 extern void initmsvcrt(void); extern void init_locale(void); @@ -123,7 +122,6 @@ struct _inittab _PyImport_Inittab[] = { #endif {"cStringIO", initcStringIO}, {"cPickle", initcPickle}, - {"pcre", initpcre}, #ifdef WIN32 {"msvcrt", initmsvcrt}, {"_locale", init_locale}, diff --git a/PCbuild/pythoncore.vcproj b/PCbuild/pythoncore.vcproj index 5d5dbb9..b15b900 100644 --- a/PCbuild/pythoncore.vcproj +++ b/PCbuild/pythoncore.vcproj @@ -1777,25 +1777,6 @@ </FileConfiguration> </File> <File - RelativePath="..\Modules\pcremodule.c"> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> - </FileConfiguration> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="_DEBUG;USE_DL_EXPORT;WIN32;_WINDOWS;$(NoInherit)"/> - </FileConfiguration> - </File> - <File RelativePath="..\Modules\posixmodule.c"> <FileConfiguration Name="Release|Win32"> @@ -1834,25 +1815,6 @@ </FileConfiguration> </File> <File - RelativePath="..\Modules\pypcre.c"> - <FileConfiguration - Name="Release|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="2" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> - </FileConfiguration> - <FileConfiguration - Name="Debug|Win32"> - <Tool - Name="VCCLCompilerTool" - Optimization="0" - AdditionalIncludeDirectories="" - PreprocessorDefinitions="_DEBUG;USE_DL_EXPORT;WIN32;_WINDOWS;$(NoInherit)"/> - </FileConfiguration> - </File> - <File RelativePath="..\Python\pystate.c"> <FileConfiguration Name="Release|Win32"> |