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

sys.builtin_module_names.  (Noticed by Toby Dickenson.)
This commit is contained in:
Guido van Rossum 2000-07-12 12:09:05 +00:00
parent 0ae528447f
commit 3f2fa0a53d
1 changed files with 1 additions and 0 deletions

View File

@ -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}