diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-05-02 18:39:55 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-05-02 18:39:55 (GMT) |
commit | e2df5ffa539bc1d903684e8c5863645a8886bfe2 (patch) | |
tree | 2467d89398b609ba59cb643029f00f835f07f42a /Modules/datetimemodule.c | |
parent | 98b25764245b03db6b70601cb9096f4b69582e27 (diff) | |
download | cpython-e2df5ffa539bc1d903684e8c5863645a8886bfe2.zip cpython-e2df5ffa539bc1d903684e8c5863645a8886bfe2.tar.gz cpython-e2df5ffa539bc1d903684e8c5863645a8886bfe2.tar.bz2 |
SF patch 731504: Typo in datetimemodule.c comment.
s/isofomat/isoformat/, by Steven Taschuk.
Diffstat (limited to 'Modules/datetimemodule.c')
-rw-r--r-- | Modules/datetimemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index 88a076b..0fc403b 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) { |