]> 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:11:36 +0000 (12:11 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 12 Jul 2000 12:11:36 +0000 (12:11 +0000)
sys.builtin_module_names.  (Noticed by Toby Dickenson.)

[Tim, please test!]

PC/config.c

index f85415d8311acea3c28749e7aee3557d81a0de31..d9d9187f8527c596f9e1b33bd2e6dcf9a9d896b1 100644 (file)
@@ -117,6 +117,7 @@ struct _inittab _PyImport_Inittab[] = {
         {"__main__", NULL},
         {"__builtin__", NULL},
         {"sys", NULL},
+       {"exceptions", NULL},
 
         /* Sentinel */
         {0, 0}