Commit 9ac33509 authored by Barry Warsaw's avatar Barry Warsaw

_PyImport_Inittab: define the exceptions module's init function.

Fixes bug #121706.
parent 9080e9b9
...@@ -37,7 +37,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -37,7 +37,7 @@ struct _inittab _PyImport_Inittab[] = {
{"__main__", NULL}, {"__main__", NULL},
{"__builtin__", NULL}, {"__builtin__", NULL},
{"sys", NULL}, {"sys", NULL},
{"exceptions", NULL}, {"exceptions", init_exceptions},
/* Sentinel */ /* Sentinel */
{0, 0} {0, 0}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment