This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Unsupported provider

classification
Title: No obvious and correct way to get the time zone offset
Type: enhancement Stage: resolved
Components: None Versions: Python 3.2
process
Status: closed Resolution:
Dependencies: 1667546 Superseder: Add aware local time support to datetime module
View: 9527
Assigned To: belopolsky Nosy List: LwarX, belopolsky, jamesh, mark.dickinson, pboddie, techtonik
Priority: normal Keywords: patch

Created on 2007-01-30 05:48 by jamesh, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue1647654.diff belopolsky, 2010-06-04 18:34 Patch adding tm_zone and tm_gmtoff fields to timetuple.
issue1647654a.diff belopolsky, 2010-06-04 18:40 Added tests checking that struct_time behaves as a 9-tuple
Messages (10)
msg31134 - (view) Author: James Henstridge (jamesh) Date: 2007-01-30 05:48
It would be nice if the Python time module provided an obvious way to get the local time UTC offset for an arbitrary time stamp.  The existing constants included in the module are not sufficient to correctly determine this value.

As context, the Bazaar version control system (written in Python), the local time UTC offset is recorded in a commit.

The method used in releases prior to 0.14 made use of the "daylight", "timezone" and "altzone" constants from the time module like this:

    if time.localtime(t).tm_isdst and time.daylight:
        return -time.altzone
    else:
        return -time.timezone

This worked most of the time, but would occasionally give incorrect results.

On Linux, the local time system can handle different daylight saving rules for different spans of years.  For years where the rules change, these constants can provide incorrect data.  Furthermore, they may be incorrect for time stamps in the past.

I personally ran into this problem last December when Western Australia adopted daylight saving -- time.altzone gave an incorrect value until the start of 2007.

Having a function in the standard library to calculate this offset would solve the problem.  The implementation we ended up with for Bazaar was:

    offset = datetime.fromtimestamp(t) - datetime.utcfromtimestamp(t)
    return offset.days * 86400 + offset.seconds

Another alternative would be to expose tm_gmtoff on time tuples (perhaps using the above code to synthesise it on platforms that don't have the field).
msg31135 - (view) Author: Paul Boddie (pboddie) Date: 2007-02-24 00:31
See patch #1667546 for a time module function returning extended time tuples. The datetime-based solution you provide is quite a clever workaround using "naive" datetime objects, but I'm inclined to think that some more convenient way of getting "aware" datetime objects would be nicer.
msg31136 - (view) Author: James Henstridge (jamesh) Date: 2007-03-01 10:09
The localtime_tz() function sounds like it would probably fit the bill.

Another option would be to expose tm_gmtoff and tm_zone as non-sequence fields of time.struct_time for systems that support them.  This would provide the data without needing new APIs.
msg31137 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-03-02 15:48
Hm.... I'm not sure I understand why the first bit of code didn't work.  Can you give a concrete example?  (I.e. what was t, what was returned by localtime(t), and what were the three time variables that day.)

I don't know the details of Western Australia's DST change.  But looking at the source of timemodule.c, I notice that it simply samples the timezone on Jan 1st and July 1st, and if they differ, decides which one is summer time by which one is smaller.  Your remark that the problem righted itself in January makes me wonder -- between what dates did you have DST?

Alternatively, it could be that your system simply didn't have the correct DST change data loaded yet (this happens all the time when governments change the rules).  Can you rule that out?  I really don't want to have to change Python in order to correct for *that* problem.

Yet another question, if you were to code this in C, how would you write it?

Regardless, I think that it would be useful to support tm_gmtoff and other struct tm entries, the same way that we do this in struct stat.

You could probably also get the correct result (assuming your system's timezone database is correct) by comparing localtime() and gmtime().  But the reverse engineering is a bit painful; your trick using datetime essentially does that.
msg31138 - (view) Author: James Henstridge (jamesh) Date: 2007-03-05 10:03
In Western Australia, a 3 year daylight saving trial was introduced starting on 3rd December 2006.  Prior to that, we had no daylight saving shifts (the previous time we had daylight saving was 15 years ago in another trial).

Since there was no daylight savings for 1st January 2006 and 1st July 2006, time.timezone and time.altzone were both equal to -28800 (UTC+8) for Python interpreters run in 2006.

I am sure that I had the tzdata updates installed: my computer displayed the correct time, and listed the UTC offset as +0900 in December.  Creating a time tuple for a date in December 2006 had the tm_isdst flag set to 1.

If I was programming this in C, I'd use the tm_gmtoff field of "struct tm" if it was available.  On platforms that don't provide tm_gmtoff, other platform specific methods would be needed (e.g. using timezone/altzone).

The other alternative is to do date arithmetic on the results of localtime() and gmtime(), as you say.
msg31139 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-03-06 22:39
I see. There is code to decide the values for time.timezone, time.altzone and time.daylight that compares tm_gmtoff for Jan 1st of the current year to tm_gmtoff for July 1st; it uses this to decide whether DST is in effect and on which hemisphere you're on. I don't know why I didn't think of checking the tm_isdst flag instead, but either way the code would have failed for you prior to Jan 1st 07, because it could not have seen a difference if your timezone database was correct.  You're just lucky you weren't running CYGWIN; the code inside #ifdef __CYGWIN__ doesn't even entertain the possibility that there's life possible on the Southern hemisphere. ;-)

I think we should do two things; (a) export tm_zone and tm_gmtoff if they exist; (b) change the code that probes Jan 1st and Jul 1st of the current year to instead probe  4-6 spots starting today and covering the year forward.

Unfortunately tm_zone and tm_gmtoff appear glibc inventions, so for supporting Solaris, Windows etc. I think we still need these.  We really could use a module that accesses the entire timezone database but that's even more platform specific.

If you want this to happen, please lobby for someone to help out on python-dev or c.l.py; I'm kind of overcommitted. :-)
msg31140 - (view) Author: Paul Boddie (pboddie) Date: 2007-03-08 00:30
Patch #1667546 now tries to export tm_gmtoff in a covertly extended time tuple. (I think tm_gmtoff originates from BSD, by the way.)
msg107086 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2010-06-04 18:34
Issue #1667546 is more ambitious than this.  I propose a very simple patch which makes tm_zone and tm_gmtoff available on systems with HAVE_STRUCT_TM_TM_ZONE defined (Linux and BSD variants). The additional fields are only allowed as attributes so len(time.localtime()) is still the same.  This choice allows to get access to extra fields without breaking code that relies on the size of timetuple.

The patch needs documentation updates which I will add if the idea is well received.
msg122166 - (view) Author: Max Arnold (LwarX) Date: 2010-11-22 20:44
Our region recently switched to another timezone and I've noticed similar issue while using Mercurial. There is some (hopefully) useful details: http://mercurial.selenic.com/bts/issue2511
msg126225 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2011-01-14 04:27
Closing this in favor of #9527.  See msg126064 for more details.
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44521
2011-01-29 23:17:36belopolskysetstatus: open -> closed
nosy: pboddie, jamesh, mark.dickinson, belopolsky, techtonik, LwarX
2011-01-29 23:11:11belopolskylinkissue9527 dependencies
2011-01-14 04:27:05belopolskysetnosy: pboddie, jamesh, mark.dickinson, belopolsky, techtonik, LwarX
messages: + msg126225
stage: patch review -> resolved
2010-11-22 20:44:14LwarXsetnosy: + LwarX
messages: + msg122166
2010-10-14 17:54:47belopolskyunlinkissue4086 dependencies
2010-08-06 13:56:53gvanrossumsetnosy: - gvanrossum
2010-08-06 03:52:10belopolskysetsuperseder: Add aware local time support to datetime module
2010-06-12 06:05:57belopolskylinkissue4086 dependencies
2010-06-05 17:37:55techtoniksetnosy: + techtonik
2010-06-05 17:28:32belopolskylinkissue7582 dependencies
2010-06-04 18:40:58belopolskysetfiles: + issue1647654a.diff
2010-06-04 18:34:01belopolskysetfiles: + issue1647654.diff

versions: + Python 3.2, - Python 3.1, Python 2.7
keywords: + patch
nosy: + mark.dickinson

messages: + msg107086
stage: patch review
2010-05-26 01:00:37belopolskysetassignee: belopolsky

nosy: + belopolsky
2009-03-30 19:48:27ajaksu2setdependencies: + Time zone-capable variant of time.localtime
type: enhancement
versions: + Python 3.1, Python 2.7
2007-01-30 05:48:17jameshcreate