summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r--Modules/mathmodule.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 626e606..569e8c9 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -268,8 +268,7 @@ initmath(void)
if (PyDict_SetItemString(d, "e", v) < 0)
goto finally;
Py_DECREF(v);
- return;
finally:
- Py_FatalError("can't initialize math module");
+ return;
}