mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +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 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[] = {
|
||||||
#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
|
||||||
# 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
|
||||||
# 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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue