]> granicus.if.org Git - python/commitdiff
Correct 1-char typo / syntax error.
authorGuido van Rossum <guido@python.org>
Wed, 18 Dec 1996 14:12:22 +0000 (14:12 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 18 Dec 1996 14:12:22 +0000 (14:12 +0000)
Modules/mathmodule.c

index b993bfcb42609b7fc111fdcca374c5a96b0da087..6570f150e53a9698ac13a01abc523b1b89f524be 100644 (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);