]> granicus.if.org Git - python/commitdiff
ins(): missed a renaming in a string: dictinsert =>
authorBarry Warsaw <barry@python.org>
Mon, 9 Dec 1996 18:24:35 +0000 (18:24 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 9 Dec 1996 18:24:35 +0000 (18:24 +0000)
PyDict_SetItemString.

GvR: note the long line > 80 chars.  Wrapping suggestions?

Modules/timemodule.c

index 20298ff99eee81a4bf7efdec0cf783f5be531834..754818a2bf554c6e69263a48ad6c3fdbe964bb8a 100644 (file)
@@ -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);
 }