Commit 36e18e3d authored by Guido van Rossum's avatar Guido van Rossum

Added pypcre.c module.

parent cb91e7bb
......@@ -61,6 +61,7 @@ extern void inittime();
extern void initthread();
extern void initcStringIO();
extern void initcPickle();
extern void initpcre();
#ifdef WIN32
extern void initmsvcrt();
#endif
......@@ -103,6 +104,7 @@ struct _inittab _PyImport_Inittab[] = {
#endif
{"cStringIO", initcStringIO},
{"cPickle", initcPickle},
{"pcre", initpcre},
#ifdef WIN32
{"msvcrt", initmsvcrt},
#endif
......
......@@ -347,6 +347,10 @@ 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
......@@ -355,6 +359,10 @@ 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
......
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