Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4c4cbf3

Browse files
committed
Correct 1-char typo / syntax error.
1 parent b053993 commit 4c4cbf3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/mathmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ initmath()
251251

252252
if (!(v = PyFloat_FromDouble(exp(1.0))))
253253
goto finally;
254-
if (PyDict_SetItemString(d, "e", ) < 0)
254+
if (PyDict_SetItemString(d, "e", v) < 0)
255255
goto finally;
256256
Py_DECREF(v);
257257

0 commit comments

Comments
 (0)