From: Moshe Zadka Date: Sat, 31 Mar 2001 14:01:13 +0000 (+0000) Subject: - #121706 - config.c - _PyImport_Inittab: define the exceptions module's init X-Git-Tag: v2.0.1c1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3712961ddbe300a504d440beae3d8f7e8d9778f;p=thirdparty%2FPython%2Fcpython.git - #121706 - config.c - _PyImport_Inittab: define the exceptions module's init function. --- diff --git a/Misc/NEWS b/Misc/NEWS index f5683fd8288b..ece1dd45123f 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 da7cabb35373..bc1b87a24f30 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}