summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-18 14:12:22 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-18 14:12:22 (GMT)
commit4c4cbf397ba676b3a38e40d3a301b2d23d9efc52 (patch)
tree00532e14f9d0f5900acce2457c1b41cf423e29cd
parentb05399373cdd9938142f74d1891a2c3d7964e153 (diff)
downloadcpython-4c4cbf397ba676b3a38e40d3a301b2d23d9efc52.zip
cpython-4c4cbf397ba676b3a38e40d3a301b2d23d9efc52.tar.gz
cpython-4c4cbf397ba676b3a38e40d3a301b2d23d9efc52.tar.bz2
Correct 1-char typo / syntax error.
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index b993bfc..6570f15 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);