Patch #1490224: set time.altzone correctly on Cygwin.

This commit is contained in:
Georg Brandl 2006-05-17 14:26:50 +00:00
parent 9e5b5e4fe1
commit 378d592617
2 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,8 @@ Core and builtins
Extension Modules
-----------------
- Patch #1490224: time.altzone is now set correctly on Cygwin.
- Patch #1435422: zlib's compress and decompress objects now have a
copy() method.

View File

@ -713,7 +713,7 @@ void inittimezone(PyObject *m) {
#ifdef __CYGWIN__
tzset();
PyModule_AddIntConstant(m, "timezone", _timezone);
PyModule_AddIntConstant(m, "altzone", _timezone);
PyModule_AddIntConstant(m, "altzone", _timezone-3600);
PyModule_AddIntConstant(m, "daylight", _daylight);
PyModule_AddObject(m, "tzname",
Py_BuildValue("(zz)", _tzname[0], _tzname[1]));