From 9ac33509de0895595a825b7168abeacbb1d9984c Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 23 Jan 2001 21:46:57 +0000 Subject: [PATCH] _PyImport_Inittab: define the exceptions module's init function. Fixes bug #121706. --- Modules/config.c.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/config.c.in b/Modules/config.c.in index 0d5e8b061ac..5a5878fe9a0 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -37,7 +37,7 @@ struct _inittab _PyImport_Inittab[] = { {"__main__", NULL}, {"__builtin__", NULL}, {"sys", NULL}, - {"exceptions", NULL}, + {"exceptions", init_exceptions}, /* Sentinel */ {0, 0}