Kaydet (Commit) f3712961 authored tarafından Moshe Zadka's avatar Moshe Zadka

- #121706 - config.c - _PyImport_Inittab: define the exceptions module's init

                       function.
üst 2a56667a
...@@ -124,6 +124,9 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=<id>&group_id=5470&atid ...@@ -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 - In site.py, the ".pth" code knew about the layout of Python trees on
unix and windows, but not on the mac. Fixed. 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? What's New in Python 2.0?
========================= =========================
......
...@@ -37,7 +37,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -37,7 +37,7 @@ struct _inittab _PyImport_Inittab[] = {
{"__main__", NULL}, {"__main__", NULL},
{"__builtin__", NULL}, {"__builtin__", NULL},
{"sys", NULL}, {"sys", NULL},
{"exceptions", NULL}, {"exceptions", init_exceptions},
/* Sentinel */ /* Sentinel */
{0, 0} {0, 0}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment