diff options
author | Guido van Rossum <guido@python.org> | 1996-02-13 00:12:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-02-13 00:12:56 (GMT) |
commit | f4a5912d511375123e417ec022c9d9fc22f3602e (patch) | |
tree | bcdf52a73384d39ee2413b8c65637fb5a8ff79ca /Modules | |
parent | ad1f7eeb326cbd01903b3c72bd65ddd43a7a9593 (diff) | |
download | cpython-f4a5912d511375123e417ec022c9d9fc22f3602e.zip cpython-f4a5912d511375123e417ec022c9d9fc22f3602e.tar.gz cpython-f4a5912d511375123e417ec022c9d9fc22f3602e.tar.bz2 |
add remove==unlink; mark strftime as varargs
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 1 |
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}, |