mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
make _sre a dynamically loadable module and build xxsubtype
This commit is contained in:
parent
388fbf3d4a
commit
4a79e36018
2 changed files with 17 additions and 4 deletions
|
@ -80,6 +80,7 @@ extern void inittime();
|
|||
extern void inittiming();
|
||||
extern void initunicodedata();
|
||||
extern void initxreadlines();
|
||||
extern void initxxsubtype();
|
||||
extern void initzlib();
|
||||
|
||||
/* -- ADDMODULE MARKER 1 -- */
|
||||
|
@ -91,7 +92,6 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
|
||||
{"gc", initgc},
|
||||
{"os2", initos2},
|
||||
{"_sre", init_sre},
|
||||
{"signal", initsignal},
|
||||
#ifdef WITH_THREAD
|
||||
{"thread", initthread},
|
||||
|
@ -102,6 +102,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_curses_panel", init_curses_panel},
|
||||
{"_hotshot", init_hotshot},
|
||||
{"_locale", init_locale},
|
||||
{"_sre", init_sre},
|
||||
{"_testcapi", init_testcapi},
|
||||
{"_weakref", init_weakref},
|
||||
{"array", initarray},
|
||||
|
@ -134,6 +135,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"timing", inittiming},
|
||||
{"unicodedata", initunicodedata},
|
||||
{"xreadlines", initxreadlines},
|
||||
{"xxsubtype", initxxsubtype},
|
||||
{"zlib", initzlib},
|
||||
#ifdef USE_SOCKET
|
||||
{"_socket", init_socket},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue