From: Guido van Rossum Date: Wed, 12 Jul 2000 12:09:05 +0000 (+0000) Subject: Add "exceptions" to list of built-in modules for the sake of X-Git-Tag: v2.0b1~858 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f2fa0a53d79c14516dab32c76f193e4ae035287;p=thirdparty%2FPython%2Fcpython.git Add "exceptions" to list of built-in modules for the sake of sys.builtin_module_names. (Noticed by Toby Dickenson.) --- diff --git a/Modules/config.c.in b/Modules/config.c.in index 08358db41aae..106b084978d2 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -37,6 +37,7 @@ struct _inittab _PyImport_Inittab[] = { {"__main__", NULL}, {"__builtin__", NULL}, {"sys", NULL}, + {"exceptions", NULL}, /* Sentinel */ {0, 0}