diff options
| author | Barry Warsaw <barry@python.org> | 1996-12-09 18:24:35 +0000 |
|---|---|---|
| committer | Barry Warsaw <barry@python.org> | 1996-12-09 18:24:35 +0000 |
| commit | ec775c52a26cf4b1090e7038dfe4f999378ac9c8 (patch) | |
| tree | af39a05ce7acc98b36f467d4e3bd62e294d1814c /Modules | |
| parent | 9a2a8a8d31795a00a6e06107b1b0ff44d0d601ff (diff) | |
| download | cpython-git-ec775c52a26cf4b1090e7038dfe4f999378ac9c8.tar.gz | |
ins(): missed a renaming in a string: dictinsert =>
PyDict_SetItemString.
GvR: note the long line > 80 chars. Wrapping suggestions?
Diffstat (limited to 'Modules')
| -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 20298ff99e..754818a2bf 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); } |
