]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
- #121706 - config.c - _PyImport_Inittab: define the exceptions module's init
authorMoshe Zadka <moshez@math.huji.ac.il>
Sat, 31 Mar 2001 14:01:13 +0000 (14:01 +0000)
committerMoshe Zadka <moshez@math.huji.ac.il>
Sat, 31 Mar 2001 14:01:13 +0000 (14:01 +0000)
                       function.

Misc/NEWS
Modules/config.c.in

index f5683fd8288be64b280eac43c838fb6f6a11a379..ece1dd45123f22115d171bf1db95e447bed268d0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -124,6 +124,9 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=<id>&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?
 =========================
 
index da7cabb35373fc573b3a8fdc215e9214afe52b5c..bc1b87a24f30930213e2ac243ced4139f05ad006 100644 (file)
@@ -37,7 +37,7 @@ struct _inittab _PyImport_Inittab[] = {
        {"__main__", NULL},
        {"__builtin__", NULL},
        {"sys", NULL},
-       {"exceptions", NULL},
+       {"exceptions", init_exceptions},
 
        /* Sentinel */
        {0, 0}