diff options
author | Guido van Rossum <guido@python.org> | 1997-10-08 15:27:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-08 15:27:56 (GMT) |
commit | e6a4b7bf3eaf299ec8765b4bec74bf4c7f4db60f (patch) | |
tree | d46b27b6bd2a9dd5f1e81a9c056f464bf6c56e75 /Modules/timemodule.c | |
parent | 5bd919b6d7feed1ba3a89098accf80ffe9e1e490 (diff) | |
download | cpython-e6a4b7bf3eaf299ec8765b4bec74bf4c7f4db60f.zip cpython-e6a4b7bf3eaf299ec8765b4bec74bf4c7f4db60f.tar.gz cpython-e6a4b7bf3eaf299ec8765b4bec74bf4c7f4db60f.tar.bz2 |
timezone support for macintosh (Jack)
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 9a8fb8b..8b12508 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -89,6 +89,37 @@ extern int ftime(); static int floatsleep Py_PROTO((double)); static double floattime Py_PROTO(()); +#ifdef macintosh +/* Our own timezone. We have enough information to deduce whether +** DST is on currently, but unfortunately we cannot put it to good +** use because we don't know the rules (and that is needed to have +** localtime() return correct tm_isdst values for times other than +** the current time. So, we cop out and only tell the user the current +** timezone. +*/ +static long timezone; + +static void +initmactimezone() +{ + MachineLocation loc; + long delta; + + ReadLocation(&loc); + + if (loc.latitude == 0 && loc.longitude == 0 && loc.u.gmtDelta == 0) + return; + + delta = loc.u.gmtDelta & 0x00FFFFFF; + + if (delta & 0x00800000) + delta |= 0xFF000000; + + timezone = -delta; +} +#endif /* macintosh */ + + static PyObject * time_time(self, args) PyObject *self; @@ -430,6 +461,11 @@ inittime() ins(d, "tzname", Py_BuildValue("(zz)", wintername, summername)); } +#else +#ifdef macintosh + initmactimezone(); + ins(d, "timezone", PyInt_FromLong(timezone)); +#endif /* macintosh */ #endif /* HAVE_TM_ZONE */ #endif /* !HAVE_TZNAME */ if (PyErr_Occurred()) |