summaryrefslogtreecommitdiffstats
path: root/PC/os2emx/config.c
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-06-10 08:04:29 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-06-10 08:04:29 (GMT)
commit4a79e360181a04ce1ac9644aa23c15d7c8a25e82 (patch)
tree958f0c8ba6eb81be36f51491d45abadec3446b61 /PC/os2emx/config.c
parent388fbf3d4a624becfbdedf6ec1dd57b57a5642ec (diff)
downloadcpython-4a79e360181a04ce1ac9644aa23c15d7c8a25e82.zip
cpython-4a79e360181a04ce1ac9644aa23c15d7c8a25e82.tar.gz
cpython-4a79e360181a04ce1ac9644aa23c15d7c8a25e82.tar.bz2
make _sre a dynamically loadable module and build xxsubtype
Diffstat (limited to 'PC/os2emx/config.c')
-rw-r--r--PC/os2emx/config.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/PC/os2emx/config.c b/PC/os2emx/config.c
index 89f8dc3..91f855e 100644
--- a/PC/os2emx/config.c
+++ b/PC/os2emx/config.c
@@ -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},