Correct 1-char typo / syntax error.

This commit is contained in:
Guido van Rossum 1996-12-18 14:12:22 +00:00
parent b05399373c
commit 4c4cbf397b

View file

@ -251,7 +251,7 @@ initmath()
if (!(v = PyFloat_FromDouble(exp(1.0))))
goto finally;
if (PyDict_SetItemString(d, "e", ) < 0)
if (PyDict_SetItemString(d, "e", v) < 0)
goto finally;
Py_DECREF(v);