From: Guido van Rossum Date: Tue, 13 Feb 1996 00:14:09 +0000 (+0000) Subject: mark strftime as varargs X-Git-Tag: v1.4b1~354 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5416e200375537b3559caa6f5722780844fbd9fe;p=python mark strftime as varargs --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 9d441b2e34..f631b05a64 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -281,7 +281,7 @@ static struct methodlist time_methods[] = { {"ctime", time_ctime}, {"mktime", time_mktime}, #ifdef HAVE_STRFTIME - {"strftime", time_strftime}, + {"strftime", time_strftime, 1}, #endif {NULL, NULL} /* sentinel */ };