diff options
author | Guido van Rossum <guido@python.org> | 2000-07-12 12:11:36 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-07-12 12:11:36 +0000 |
commit | dce48e4eb1afbd33c19838e1c287ed24317e194d (patch) | |
tree | 4e74a2cbd1f663c9c9283ca9feda8e6fd857e2ca | |
parent | 535bf8d89a5d05eba39210a00b89714ad04eba72 (diff) | |
download | cpython-dce48e4eb1afbd33c19838e1c287ed24317e194d.tar.gz |
Add "exceptions" to list of built-in modules for the sake of
sys.builtin_module_names. (Noticed by Toby Dickenson.)
[Tim, please test!]
-rw-r--r-- | PC/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index f85415d831..d9d9187f85 100644 --- a/PC/config.c +++ b/PC/config.c @@ -117,6 +117,7 @@ struct _inittab _PyImport_Inittab[] = { {"__main__", NULL}, {"__builtin__", NULL}, {"sys", NULL}, + {"exceptions", NULL}, /* Sentinel */ {0, 0} |