summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-02-26 22:22:47 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-02-26 22:22:47 (GMT)
commit2633c69fae7e413b2b64b01d8c0c901ae649a225 (patch)
tree144a1f97f427f019a8ddaae96a8f0da6a09df985 /PC
parentf543348fff32ae20a9fd2c7f70a3549a3280048c (diff)
downloadcpython-2633c69fae7e413b2b64b01d8c0c901ae649a225.zip
cpython-2633c69fae7e413b2b64b01d8c0c901ae649a225.tar.gz
cpython-2633c69fae7e413b2b64b01d8c0c901ae649a225.tar.bz2
Remove the exceptions builtin module, all the exceptions are already builtin.
Diffstat (limited to 'PC')
-rw-r--r--PC/config.c1
-rw-r--r--PC/os2emx/config.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c
index a9a280d..1d142b56 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -161,7 +161,6 @@ struct _inittab _PyImport_Inittab[] = {
{"__main__", NULL},
{"__builtin__", NULL},
{"sys", NULL},
- {"exceptions", NULL},
{"_types", init_types},
diff --git a/PC/os2emx/config.c b/PC/os2emx/config.c
index 696c3bb..07c1783 100644
--- a/PC/os2emx/config.c
+++ b/PC/os2emx/config.c
@@ -172,7 +172,6 @@ struct _inittab _PyImport_Inittab[] = {
{"__main__", NULL},
{"__builtin__", NULL},
{"sys", NULL},
- {"exceptions", NULL},
/* This lives in gcmodule.c */
{"gc", initgc},