From: Guido van Rossum Date: Tue, 13 Feb 1996 00:12:56 +0000 (+0000) Subject: add remove==unlink; mark strftime as varargs X-Git-Tag: v1.4b1~355 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4a5912d511375123e417ec022c9d9fc22f3602e;p=python add remove==unlink; mark strftime as varargs --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index faf3cb524a..ca311c4402 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1426,6 +1426,7 @@ static struct methodlist posix_methods[] = { {"uname", posix_uname}, #endif /* HAVE_UNAME */ {"unlink", posix_unlink}, + {"remove", posix_unlink}, {"utime", posix_utime}, #ifdef HAVE_TIMES {"times", posix_times},