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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5416e200375537b3559caa6f5722780844fbd9fe;p=thirdparty%2FPython%2Fcpython.git mark strftime as varargs --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 9d441b2e343b..f631b05a647e 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 */ };