From: Tim Peters Date: Fri, 2 May 2003 18:39:55 +0000 (+0000) Subject: SF patch 731504: Typo in datetimemodule.c comment. X-Git-Tag: v2.3c1~898 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2df5ffa539bc1d903684e8c5863645a8886bfe2;p=thirdparty%2FPython%2Fcpython.git SF patch 731504: Typo in datetimemodule.c comment. s/isofomat/isoformat/, by Steven Taschuk. --- diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index 88a076b6677f..0fc403bd5f36 100644 --- a/Modules/datetimemodule.c +++ b/Modules/datetimemodule.c @@ -2379,7 +2379,7 @@ date_isoformat(PyDateTime_Date *self) return PyString_FromString(buffer); } -/* str() calls the appropriate isofomat() method. */ +/* str() calls the appropriate isoformat() method. */ static PyObject * date_str(PyDateTime_Date *self) {