diff options
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 2044688..df9b89a 100644 --- a/PC/config.c +++ b/PC/config.c @@ -44,6 +44,7 @@ extern void init_locale(void); extern void init_codecs(void); extern void initxreadlines(void); extern void init_weakref(void); +extern void initxxsubtype(void); /* XXX tim: what's the purpose of ADDMODULE MARKER? */ /* -- ADDMODULE MARKER 1 -- */ @@ -98,6 +99,8 @@ struct _inittab _PyImport_Inittab[] = { {"xreadlines", initxreadlines}, {"_weakref", init_weakref}, + {"xxsubtype", initxxsubtype}, + /* XXX tim: what's the purpose of ADDMODULE MARKER? */ /* -- ADDMODULE MARKER 2 -- */ |