diff options
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r-- | Modules/mathmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |