diff options
author | Guido van Rossum <guido@python.org> | 1994-08-30 12:38:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-30 12:38:05 (GMT) |
commit | e4ab6475f1d9e97f17bd17206a10c1d8c4c4130c (patch) | |
tree | 40a36ce49be8fa5eb9cdadc626cfff15e05f82e8 /Python/getmtime.c | |
parent | f6971e2958a162298885b6069cc137d973fac356 (diff) | |
download | cpython-e4ab6475f1d9e97f17bd17206a10c1d8c4c4130c.zip cpython-e4ab6475f1d9e97f17bd17206a10c1d8c4c4130c.tar.gz cpython-e4ab6475f1d9e97f17bd17206a10c1d8c4c4130c.tar.bz2 |
* Python/getmtime.c: Remove mac specifics (Mac subdirectory has
its own version now)
* Python/bltinmodule.c (builtin_tuple): use pre-existing
listtuple(v) for lists
Diffstat (limited to 'Python/getmtime.c')
-rw-r--r-- | Python/getmtime.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/getmtime.c b/Python/getmtime.c index fa2fd02..7c85610 100644 --- a/Python/getmtime.c +++ b/Python/getmtime.c @@ -30,12 +30,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "config.h" #endif -#ifdef macintosh -#include "stat.h" -#else #include <sys/types.h> #include <sys/stat.h> -#endif long getmtime(path) |