From ec775c52a26cf4b1090e7038dfe4f999378ac9c8 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 9 Dec 1996 18:24:35 +0000 Subject: ins(): missed a renaming in a string: dictinsert => PyDict_SetItemString. GvR: note the long line > 80 chars. Wrapping suggestions? --- Modules/timemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 20298ff..754818a 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -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); } -- cgit v0.12