diff options
author | Guido van Rossum <guido@python.org> | 2007-04-07 03:14:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-04-07 03:14:46 (GMT) |
commit | b8551ae68fc330040e39ee2f4b6bdedcad1ea0a8 (patch) | |
tree | 422501004846ffa47babf3e00da7882db3fe3bbb | |
parent | 756aa93763f30638605246070424798f2601b263 (diff) | |
download | cpython-b8551ae68fc330040e39ee2f4b6bdedcad1ea0a8.zip cpython-b8551ae68fc330040e39ee2f4b6bdedcad1ea0a8.tar.gz cpython-b8551ae68fc330040e39ee2f4b6bdedcad1ea0a8.tar.bz2 |
Somehow this contained a bogus reference to "exceptions" which caused
"import exceptions" to behave bizarrely.
-rw-r--r-- | Modules/config.c.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 8c25eea..e9c54a9 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -50,7 +50,6 @@ struct _inittab _PyImport_Inittab[] = { {"__main__", NULL}, {"__builtin__", NULL}, {"sys", NULL}, - {"exceptions", NULL}, /* This lives in gcmodule.c */ {"gc", initgc}, @@ -63,4 +62,3 @@ struct _inittab _PyImport_Inittab[] = { #ifdef __cplusplus } #endif - |