mirror of
https://github.com/python/cpython.git
synced 2025-10-15 11:22:18 +00:00
Correct 1-char typo / syntax error.
This commit is contained in:
parent
b05399373c
commit
4c4cbf397b
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ initmath()
|
||||||
|
|
||||||
if (!(v = PyFloat_FromDouble(exp(1.0))))
|
if (!(v = PyFloat_FromDouble(exp(1.0))))
|
||||||
goto finally;
|
goto finally;
|
||||||
if (PyDict_SetItemString(d, "e", ) < 0)
|
if (PyDict_SetItemString(d, "e", v) < 0)
|
||||||
goto finally;
|
goto finally;
|
||||||
Py_DECREF(v);
|
Py_DECREF(v);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue