From: Guido van Rossum Date: Wed, 18 Dec 1996 14:12:22 +0000 (+0000) Subject: Correct 1-char typo / syntax error. X-Git-Tag: v1.5a1~711 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c4cbf397ba676b3a38e40d3a301b2d23d9efc52;p=python Correct 1-char typo / syntax error. --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index b993bfcb42..6570f150e5 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -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);