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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4a5912d511375123e417ec022c9d9fc22f3602e;p=thirdparty%2FPython%2Fcpython.git add remove==unlink; mark strftime as varargs --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index faf3cb524a50..ca311c4402d1 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},