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

Watch it, Barry! :-)
This commit is contained in:
Guido van Rossum 1996-12-18 14:14:33 +00:00
parent 4c4cbf397b
commit 4a4880966b
1 changed files with 1 additions and 0 deletions

View File

@ -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");