Mac only: two epoch problem workarounds are no longer needed for GUSI
>= 2.0.5. One still is:-(
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index aa0be80..984980c 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -259,7 +259,7 @@
{
struct tm *p;
errno = 0;
-#if defined(macintosh) && defined(USE_GUSI2)
+#if defined(macintosh) && defined(USE_GUSI204)
when = when + GUSI_TO_MSL_EPOCH;
#endif
p = function(&when);
@@ -474,7 +474,7 @@
if (!PyArg_Parse(args, "d", &dt))
return NULL;
tt = (time_t)dt;
-#if defined(macintosh) && defined(USE_GUSI2)
+#if defined(macintosh) && defined(USE_GUSI204)
tt = tt + GUSI_TO_MSL_EPOCH;
#endif
p = ctime(&tt);