Commit 4a488096 authored by Guido van Rossum's avatar Guido van Rossum

Correct *another* mistake (initmath() always fell through to fatal error).

Watch it, Barry! :-)
parent 4c4cbf39
......@@ -254,6 +254,7 @@ initmath()
if (PyDict_SetItemString(d, "e", v) < 0)
goto finally;
Py_DECREF(v);
return;
finally:
Py_FatalError("can't initialize math module");
......
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