summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1996-12-09 18:24:35 (GMT)
committerBarry Warsaw <barry@python.org>1996-12-09 18:24:35 (GMT)
commitec775c52a26cf4b1090e7038dfe4f999378ac9c8 (patch)
treeaf39a05ce7acc98b36f467d4e3bd62e294d1814c /Modules/timemodule.c
parent9a2a8a8d31795a00a6e06107b1b0ff44d0d601ff (diff)
downloadcpython-ec775c52a26cf4b1090e7038dfe4f999378ac9c8.zip
cpython-ec775c52a26cf4b1090e7038dfe4f999378ac9c8.tar.gz
cpython-ec775c52a26cf4b1090e7038dfe4f999378ac9c8.tar.bz2
ins(): missed a renaming in a string: dictinsert =>
PyDict_SetItemString. GvR: note the long line > 80 chars. Wrapping suggestions?
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c2
1 files changed, 1 insertions, 1 deletions
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);
}