Kaydet (Commit) 36e18e3d authored tarafından Guido van Rossum's avatar Guido van Rossum

Added pypcre.c module.

üst cb91e7bb
...@@ -61,6 +61,7 @@ extern void inittime(); ...@@ -61,6 +61,7 @@ extern void inittime();
extern void initthread(); extern void initthread();
extern void initcStringIO(); extern void initcStringIO();
extern void initcPickle(); extern void initcPickle();
extern void initpcre();
#ifdef WIN32 #ifdef WIN32
extern void initmsvcrt(); extern void initmsvcrt();
#endif #endif
...@@ -103,6 +104,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -103,6 +104,7 @@ struct _inittab _PyImport_Inittab[] = {
#endif #endif
{"cStringIO", initcStringIO}, {"cStringIO", initcStringIO},
{"cPickle", initcPickle}, {"cPickle", initcPickle},
{"pcre", initpcre},
#ifdef WIN32 #ifdef WIN32
{"msvcrt", initmsvcrt}, {"msvcrt", initmsvcrt},
#endif #endif
......
...@@ -347,6 +347,10 @@ SOURCE=..\Parser\parsetok.c ...@@ -347,6 +347,10 @@ SOURCE=..\Parser\parsetok.c
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\Modules\pcremodule.c
# End Source File
# Begin Source File
SOURCE=..\Modules\posixmodule.c SOURCE=..\Modules\posixmodule.c
# End Source File # End Source File
# Begin Source File # Begin Source File
...@@ -355,6 +359,10 @@ SOURCE=..\Python\pyfpe.c ...@@ -355,6 +359,10 @@ SOURCE=..\Python\pyfpe.c
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\Modules\pypcre.c
# End Source File
# Begin Source File
SOURCE=..\Python\pystate.c SOURCE=..\Python\pystate.c
# End Source File # End Source File
# Begin Source File # Begin Source File
......
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