summaryrefslogtreecommitdiffstats
path: root/Modules/datetimemodule.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-05-02 18:39:55 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-05-02 18:39:55 (GMT)
commite2df5ffa539bc1d903684e8c5863645a8886bfe2 (patch)
tree2467d89398b609ba59cb643029f00f835f07f42a /Modules/datetimemodule.c
parent98b25764245b03db6b70601cb9096f4b69582e27 (diff)
downloadcpython-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.c2
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)
{