Commit 3f2fa0a5 authored by Guido van Rossum's avatar Guido van Rossum

Add "exceptions" to list of built-in modules for the sake of

sys.builtin_module_names.  (Noticed by Toby Dickenson.)
parent 0ae52844
...@@ -37,6 +37,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -37,6 +37,7 @@ struct _inittab _PyImport_Inittab[] = {
{"__main__", NULL}, {"__main__", NULL},
{"__builtin__", NULL}, {"__builtin__", NULL},
{"sys", NULL}, {"sys", NULL},
{"exceptions", NULL},
/* 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