mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Added pypcre.c module.
This commit is contained in:
parent
cb91e7bbd3
commit
36e18e3d52
2 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue