summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-02-13 00:12:56 (GMT)
committerGuido van Rossum <guido@python.org>1996-02-13 00:12:56 (GMT)
commitf4a5912d511375123e417ec022c9d9fc22f3602e (patch)
treebcdf52a73384d39ee2413b8c65637fb5a8ff79ca /Modules/posixmodule.c
parentad1f7eeb326cbd01903b3c72bd65ddd43a7a9593 (diff)
downloadcpython-f4a5912d511375123e417ec022c9d9fc22f3602e.zip
cpython-f4a5912d511375123e417ec022c9d9fc22f3602e.tar.gz
cpython-f4a5912d511375123e417ec022c9d9fc22f3602e.tar.bz2
add remove==unlink; mark strftime as varargs
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index faf3cb5..ca311c4 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},