diff options
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 2 |
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); } |