summaryrefslogtreecommitdiff
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-04-11 20:46:23 +0000
committerJack Jansen <jack.jansen@cwi.nl>2002-04-11 20:46:23 +0000
commit8ab04b4d65586829887822a78d038a33ee7a69fd (patch)
treef276fd46f065664b962b12a2e51d78a44fa86c14 /Modules/timemodule.c
parent9b745f6665da02c4349e8a4e592dc42d6524b8d1 (diff)
downloadcpython-git-8ab04b4d65586829887822a78d038a33ee7a69fd.tar.gz
Got rid of ifdefs for long-obsolete GUSI versions.
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 9396826430..dda2ce4ee5 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -9,13 +9,6 @@
#ifdef macintosh
#include <time.h>
#include <OSUtils.h>
-#ifdef USE_GUSI211
-/* GUSI, the I/O library which has the time() function and such uses the
-** Mac epoch of 1904. MSL, the C library which has localtime() and so uses
-** the ANSI epoch of 1900.
-*/
-#define GUSI_TO_MSL_EPOCH (4*365*24*60*60)
-#endif /* USE_GUSI2 */
#else
#include <sys/types.h>
#endif
@@ -259,9 +252,6 @@ time_convert(time_t when, struct tm * (*function)(const time_t *))
{
struct tm *p;
errno = 0;
-#if defined(macintosh) && defined(USE_GUSI204)
- when = when + GUSI_TO_MSL_EPOCH;
-#endif
p = function(&when);
if (p == NULL) {
#ifdef EINVAL
@@ -487,9 +477,6 @@ time_ctime(PyObject *self, PyObject *args)
return NULL;
tt = (time_t)dt;
}
-#if defined(macintosh) && defined(USE_GUSI204)
- tt = tt + GUSI_TO_MSL_EPOCH;
-#endif
p = ctime(&tt);
if (p == NULL) {
PyErr_SetString(PyExc_ValueError, "unconvertible time");
@@ -526,9 +513,6 @@ time_mktime(PyObject *self, PyObject *args)
"mktime argument out of range");
return NULL;
}
-#if defined(macintosh) && defined(USE_GUSI211)
- tt = tt - GUSI_TO_MSL_EPOCH;
-#endif
return PyFloat_FromDouble((double)tt);
}