[Python-checkins] r43075 - in python/trunk/PC: config.c os2emx/config.c os2emx/python24.def os2vacpp/config.c os2vacpp/python.def

neal.norwitz python-checkins at python.org
Thu Mar 16 08:06:05 CET 2006


Author: neal.norwitz
Date: Thu Mar 16 08:05:59 2006
New Revision: 43075

Modified:
   python/trunk/PC/config.c
   python/trunk/PC/os2emx/config.c
   python/trunk/PC/os2emx/python24.def
   python/trunk/PC/os2vacpp/config.c
   python/trunk/PC/os2vacpp/python.def
Log:
Remove some more references to regex that I missed.

Modified: python/trunk/PC/config.c
==============================================================================
--- python/trunk/PC/config.c	(original)
+++ python/trunk/PC/config.c	Thu Mar 16 08:05:59 2006
@@ -20,7 +20,6 @@
 extern void init_md5(void);
 extern void initnt(void);
 extern void initoperator(void);
-extern void initregex(void);
 #ifndef MS_WIN64
 extern void initrgbimg(void);
 #endif
@@ -95,7 +94,6 @@
         {"_md5", init_md5},
         {"nt", initnt}, /* Use the NT os functions, not posix */
         {"operator", initoperator},
-        {"regex", initregex},
 #ifndef MS_WIN64
         {"rgbimg", initrgbimg},
 #endif

Modified: python/trunk/PC/os2emx/config.c
==============================================================================
--- python/trunk/PC/os2emx/config.c	(original)
+++ python/trunk/PC/os2emx/config.c	Thu Mar 16 08:05:59 2006
@@ -64,7 +64,6 @@
 extern void initmath();
 extern void initmd5();
 extern void initoperator();
-extern void initregex();
 extern void initrgbimg();
 extern void initsha();
 extern void initstrop();
@@ -128,7 +127,6 @@
 	{"math", initmath},
 	{"md5", initmd5},
 	{"operator", initoperator},
-	{"regex", initregex},
 	{"rgbimg", initrgbimg},
 	{"sha", initsha},
 	{"strop", initstrop},

Modified: python/trunk/PC/os2emx/python24.def
==============================================================================
--- python/trunk/PC/os2emx/python24.def	(original)
+++ python/trunk/PC/os2emx/python24.def	Thu Mar 16 08:05:59 2006
@@ -1134,19 +1134,6 @@
 ; From python24_s.lib(_randommodule)
 ;  "init_random"
 
-; From python24_s.lib(regexmodule)
-;  "initregex"
-
-; From python24_s.lib(regexpr)
-;  "_Py_re_syntax_table"
-;  "_Py_re_compile_initialize"
-;  "_Py_re_compile_pattern"
-;  "_Py_re_match"
-;  "_Py_re_search"
-;  "_Py_re_set_syntax"
-;  "_Py_re_compile_fastmap"
-;  "_Py_re_syntax"
-
 ; From python24_s.lib(rgbimgmodule)
 ;  "initrgbimg"
 

Modified: python/trunk/PC/os2vacpp/config.c
==============================================================================
--- python/trunk/PC/os2vacpp/config.c	(original)
+++ python/trunk/PC/os2vacpp/config.c	Thu Mar 16 08:05:59 2006
@@ -27,7 +27,6 @@
 extern void initos2(void);
 extern void initoperator(void);
 extern void initposix(void);
-extern void initregex(void);
 extern void initrgbimg(void);
 extern void initsignal(void);
 extern void initselect(void);
@@ -70,7 +69,6 @@
 #endif
 #endif
         {"operator", initoperator},
-        {"regex", initregex},
 //        {"rgbimg", initrgbimg},
         {"signal", initsignal},
 #ifdef USE_SOCKET

Modified: python/trunk/PC/os2vacpp/python.def
==============================================================================
--- python/trunk/PC/os2vacpp/python.def	(original)
+++ python/trunk/PC/os2vacpp/python.def	Thu Mar 16 08:05:59 2006
@@ -464,12 +464,6 @@
 ;               _Py_mergebitset
 ;               _Py_meta_grammar
 ;               _Py_newbitset
-               _Py_re_compile_fastmap
-               _Py_re_compile_initialize
-               _Py_re_compile_pattern
-               _Py_re_match
-               _Py_re_search
-               _Py_re_set_syntax
 ;               _Py_samebitset
                PyBuffer_Type
                PyBuffer_FromObject


More information about the Python-checkins mailing list