diff options
author | Guido van Rossum <guido@python.org> | 2000-07-12 12:09:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-07-12 12:09:05 (GMT) |
commit | 3f2fa0a53d79c14516dab32c76f193e4ae035287 (patch) | |
tree | 9e54638b91140c8941e8adea4a00f309bdf3903c | |
parent | 0ae528447f5321936532b8be1a46c54f45b8b734 (diff) | |
download | cpython-3f2fa0a53d79c14516dab32c76f193e4ae035287.zip cpython-3f2fa0a53d79c14516dab32c76f193e4ae035287.tar.gz cpython-3f2fa0a53d79c14516dab32c76f193e4ae035287.tar.bz2 |
Add "exceptions" to list of built-in modules for the sake of
sys.builtin_module_names. (Noticed by Toby Dickenson.)
-rw-r--r-- | Modules/config.c.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 08358db..106b084 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} |