From f3712961ddbe300a504d440beae3d8f7e8d9778f Mon Sep 17 00:00:00 2001 From: Moshe Zadka Date: Sat, 31 Mar 2001 14:01:13 +0000 Subject: - #121706 - config.c - _PyImport_Inittab: define the exceptions module's init function. --- Misc/NEWS | 3 +++ Modules/config.c.in | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index f5683fd..ece1dd4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -124,6 +124,9 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=&group_id=5470&atid - In site.py, the ".pth" code knew about the layout of Python trees on unix and windows, but not on the mac. Fixed. +- #121706 - config.c - _PyImport_Inittab: define the exceptions module's init + function. + What's New in Python 2.0? ========================= diff --git a/Modules/config.c.in b/Modules/config.c.in index da7cabb..bc1b87a 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -37,7 +37,7 @@ struct _inittab _PyImport_Inittab[] = { {"__main__", NULL}, {"__builtin__", NULL}, {"sys", NULL}, - {"exceptions", NULL}, + {"exceptions", init_exceptions}, /* Sentinel */ {0, 0} -- cgit v0.12