Commit 119bc096 authored by Barry Warsaw's avatar Barry Warsaw

ins(): missed a renaming in a string: dictinsert =>

PyDict_SetItemString.

GvR: note the long line > 80 chars.  Wrapping suggestions?
parent e4b34c7c
...@@ -335,7 +335,7 @@ ins(d, name, v) ...@@ -335,7 +335,7 @@ ins(d, name, v)
Py_FatalError("Can't initialize time module -- NULL value"); Py_FatalError("Can't initialize time module -- NULL value");
if (PyDict_SetItemString(d, name, v) != 0) if (PyDict_SetItemString(d, name, v) != 0)
Py_FatalError( Py_FatalError(
"Can't initialize time module -- dictinsert failed"); "Can't initialize time module -- PyDict_SetItemString failed");
Py_DECREF(v); Py_DECREF(v);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment