mirror of
https://github.com/python/cpython.git
synced 2026-01-06 23:42:34 +00:00
ins(): missed a renaming in a string: dictinsert =>
PyDict_SetItemString. GvR: note the long line > 80 chars. Wrapping suggestions?
This commit is contained in:
parent
9a2a8a8d31
commit
ec775c52a2
1 changed files with 1 additions and 1 deletions
|
|
@ -335,7 +335,7 @@ ins(d, name, v)
|
|||
Py_FatalError("Can't initialize time module -- NULL value");
|
||||
if (PyDict_SetItemString(d, name, v) != 0)
|
||||
Py_FatalError(
|
||||
"Can't initialize time module -- dictinsert failed");
|
||||
"Can't initialize time module -- PyDict_SetItemString failed");
|
||||
Py_DECREF(v);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue