]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add "exceptions" to list of built-in modules for the sake of
authorGuido van Rossum <guido@python.org>
Wed, 12 Jul 2000 12:09:05 +0000 (12:09 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 12 Jul 2000 12:09:05 +0000 (12:09 +0000)
sys.builtin_module_names.  (Noticed by Toby Dickenson.)

Modules/config.c.in

index 08358db41aae92e7551a0ce5a630cd9c3d0bf2be..106b084978d29b62cdb729d94353b7a53bd99e43 100644 (file)
@@ -37,6 +37,7 @@ struct _inittab _PyImport_Inittab[] = {
        {"__main__", NULL},
        {"__builtin__", NULL},
        {"sys", NULL},
+       {"exceptions", NULL},
 
        /* Sentinel */
        {0, 0}